fix: allow adding forums to channelTypes (#8658)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
This commit is contained in:
Almeida
2022-09-24 14:37:41 +01:00
committed by GitHub
parent fc8ed816e6
commit b1e190c4f0

View File

@@ -11,6 +11,7 @@ const allowedChannelTypes = [
ChannelType.PublicThread,
ChannelType.PrivateThread,
ChannelType.GuildStageVoice,
ChannelType.GuildForum,
] as const;
export type ApplicationCommandOptionAllowedChannelTypes = typeof allowedChannelTypes[number];