mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23:31 +01:00
types(CategoryChannel): fix createChannel return type (#7138)
This commit is contained in:
6
typings/index.d.ts
vendored
6
typings/index.d.ts
vendored
@@ -509,11 +509,7 @@ export class CategoryChannel extends GuildChannel {
|
|||||||
name: string,
|
name: string,
|
||||||
options: CategoryCreateChannelOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE },
|
options: CategoryCreateChannelOptions & { type: 'GUILD_STORE' | ChannelTypes.GUILD_STORE },
|
||||||
): Promise<StoreChannel>;
|
): Promise<StoreChannel>;
|
||||||
|
public createChannel(name: string, options?: CategoryCreateChannelOptions): Promise<TextChannel>;
|
||||||
public createChannel(
|
|
||||||
name: string,
|
|
||||||
options?: CategoryCreateChannelOptions,
|
|
||||||
): Promise<Exclude<NonThreadGuildBasedChannel, CategoryChannel>>;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type CategoryChannelResolvable = Snowflake | CategoryChannel;
|
export type CategoryChannelResolvable = Snowflake | CategoryChannel;
|
||||||
|
|||||||
@@ -857,10 +857,10 @@ declare const categoryChannel: CategoryChannel;
|
|||||||
expectType<Promise<VoiceChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_VOICE' }));
|
expectType<Promise<VoiceChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_VOICE' }));
|
||||||
expectType<Promise<TextChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_TEXT' }));
|
expectType<Promise<TextChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_TEXT' }));
|
||||||
expectType<Promise<NewsChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_NEWS' }));
|
expectType<Promise<NewsChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_NEWS' }));
|
||||||
expectDeprecated(categoryChannel.createChannel('name', { type: 'GUILD_STORE' }));
|
expectType<Promise<StoreChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_STORE' }));
|
||||||
expectType<Promise<StageChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_STAGE_VOICE' }));
|
expectType<Promise<StageChannel>>(categoryChannel.createChannel('name', { type: 'GUILD_STAGE_VOICE' }));
|
||||||
expectType<Promise<Exclude<NonThreadGuildBasedChannel, CategoryChannel>>>(categoryChannel.createChannel('name', {}));
|
expectType<Promise<TextChannel>>(categoryChannel.createChannel('name', {}));
|
||||||
expectType<Promise<Exclude<NonThreadGuildBasedChannel, CategoryChannel>>>(categoryChannel.createChannel('name'));
|
expectType<Promise<TextChannel>>(categoryChannel.createChannel('name'));
|
||||||
}
|
}
|
||||||
|
|
||||||
declare const guildChannelManager: GuildChannelManager;
|
declare const guildChannelManager: GuildChannelManager;
|
||||||
|
|||||||
Reference in New Issue
Block a user