@@ -560,12 +560,12 @@ declare const guildChannelManager: GuildChannelManager;
560560{
561561 type AnyChannel = TextChannel | VoiceChannel | CategoryChannel | NewsChannel | StoreChannel | StageChannel ;
562562
563- assertType < Promise < VoiceChannel > > ( guildChannelManager . create ( 'name' , { type : 'voice ' } ) ) ;
564- assertType < Promise < CategoryChannel > > ( guildChannelManager . create ( 'name' , { type : 'category ' } ) ) ;
565- assertType < Promise < TextChannel > > ( guildChannelManager . create ( 'name' , { type : 'text ' } ) ) ;
566- assertType < Promise < NewsChannel > > ( guildChannelManager . create ( 'name' , { type : 'news ' } ) ) ;
567- assertType < Promise < StoreChannel > > ( guildChannelManager . create ( 'name' , { type : 'store ' } ) ) ;
568- assertType < Promise < StageChannel > > ( guildChannelManager . create ( 'name' , { type : 'stage ' } ) ) ;
563+ assertType < Promise < VoiceChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_VOICE ' } ) ) ;
564+ assertType < Promise < CategoryChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_CATEGORY ' } ) ) ;
565+ assertType < Promise < TextChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_TEXT ' } ) ) ;
566+ assertType < Promise < NewsChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_NEWS ' } ) ) ;
567+ assertType < Promise < StoreChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_STORE ' } ) ) ;
568+ assertType < Promise < StageChannel > > ( guildChannelManager . create ( 'name' , { type : 'GUILD_STAGE_VOICE ' } ) ) ;
569569
570570 assertType < Promise < Collection < Snowflake , AnyChannel > > > ( guildChannelManager . fetch ( ) ) ;
571571 assertType < Promise < Collection < Snowflake , AnyChannel > > > ( guildChannelManager . fetch ( undefined , { } ) ) ;
0 commit comments