fix(TextBasedChannelTypes): add GuildStageVoice (#9232)

fix(TextBasedChannelTypes): add GuildStageVoice
This commit is contained in:
n1ck_pro
2023-03-15 18:32:29 +01:00
committed by GitHub
parent 41077c96b5
commit 51edba78bc

View File

@@ -93,6 +93,7 @@ exports.NonSystemMessageTypes = [
* * {@link ChannelType.PublicThread}
* * {@link ChannelType.PrivateThread}
* * {@link ChannelType.GuildVoice}
* * {@link ChannelType.GuildStageVoice}
* @typedef {ChannelType[]} TextBasedChannelTypes
*/
exports.TextBasedChannelTypes = [
@@ -103,6 +104,7 @@ exports.TextBasedChannelTypes = [
ChannelType.PublicThread,
ChannelType.PrivateThread,
ChannelType.GuildVoice,
ChannelType.GuildStageVoice,
];
/**