Prettified Code!

This commit is contained in:
itohatweb
2021-05-21 15:51:33 +00:00
committed by GitHub Action
parent fe4ab8517b
commit 3549cdeb63
279 changed files with 1617 additions and 1768 deletions
@@ -11,7 +11,7 @@ export async function editChannelOverwrite(
guildId: bigint,
channelId: bigint,
overwriteId: bigint,
options: Omit<Overwrite, "id">,
options: Omit<Overwrite, "id">
): Promise<undefined> {
await requireBotGuildPermissions(guildId, ["MANAGE_ROLES"]);
@@ -22,6 +22,6 @@ export async function editChannelOverwrite(
allow: calculateBits(options.allow),
deny: calculateBits(options.deny),
type: options.type,
},
}
);
}