style: run prettier (#9041)

This commit is contained in:
Almeida
2023-01-12 08:23:02 +00:00
committed by GitHub
parent 8dfd0037b5
commit 2798ba1eb3
6 changed files with 9 additions and 7 deletions

View File

@@ -14,7 +14,7 @@ const allowedChannelTypes = [
ChannelType.GuildForum,
] as const;
export type ApplicationCommandOptionAllowedChannelTypes = typeof allowedChannelTypes[number];
export type ApplicationCommandOptionAllowedChannelTypes = (typeof allowedChannelTypes)[number];
const channelTypesPredicate = s.array(s.union(...allowedChannelTypes.map((type) => s.literal(type))));