categoryGuildChannelConverter top-level constant

GuildChannelConverter<GuildCategory> const categoryGuildChannelConverter

A converter that converts input to an GuildCategory.

This will first attempt to parse the input as a Snowflake that will then be converted to an GuildCategory. If this fails, the channel will be looked up by name in the current guild.

This converter has a Discord Slash Command argument type of CommandOptionType.channel and it set to accept channels of type ChannelType.guildCategory.

Implementation

const GuildChannelConverter<GuildCategory> categoryGuildChannelConverter = GuildChannelConverter([
  ChannelType.guildCategory,
]);