diff --git a/packages/bot/src/transformers/types.ts b/packages/bot/src/transformers/types.ts index 4ee2a4c7d..3eb068357 100644 --- a/packages/bot/src/transformers/types.ts +++ b/packages/bot/src/transformers/types.ts @@ -438,7 +438,7 @@ export interface Channel { topic?: string; /** The id of the last message sent in this channel (may not point to an existing or valid message) */ lastMessageId?: bigint; - /** The bitrate (in bits) of the voice or stage channel */ + /** The bitrate (in bits per second) of the voice or stage channel */ bitrate?: number; /** The user limit of the voice or stage channel */ userLimit?: number; diff --git a/packages/types/src/discord/channel.ts b/packages/types/src/discord/channel.ts index c9e1243f8..0b9562091 100644 --- a/packages/types/src/discord/channel.ts +++ b/packages/types/src/discord/channel.ts @@ -39,7 +39,7 @@ export interface DiscordChannel extends Partial { nsfw?: boolean; /** The id of the last message sent in this channel (may not point to an existing or valid message or thread) */ last_message_id?: string | null; - /** The bitrate (in bits) of the voice or stage channel */ + /** The bitrate (in bits per second) of the voice or stage channel */ bitrate?: number; /** The user limit of the voice or stage channel */ user_limit?: number; diff --git a/packages/types/src/discordeno/channel.ts b/packages/types/src/discordeno/channel.ts index 3e8d93092..9fd2b19ea 100644 --- a/packages/types/src/discordeno/channel.ts +++ b/packages/types/src/discordeno/channel.ts @@ -113,7 +113,7 @@ export interface ModifyChannel { */ rateLimitPerUser?: number | null; /** - * The bitrate (in bits) of the voice or stage channel + * The bitrate (in bits per second) of the voice or stage channel * * @remarks * Minimum of 8000 bits diff --git a/packages/types/src/discordeno/guild.ts b/packages/types/src/discordeno/guild.ts index 7672f9c84..c6889f96b 100644 --- a/packages/types/src/discordeno/guild.ts +++ b/packages/types/src/discordeno/guild.ts @@ -70,7 +70,7 @@ export interface CreateGuildChannel { type?: ChannelTypes; /** Channel topic (0-1024 characters) */ topic?: string; - /** The bitrate (in bits) of the voice channel (voice only) */ + /** The bitrate (in bits per second) of the voice channel (voice only) */ bitrate?: number; /** The user limit of the voice channel (voice only) */ userLimit?: number;