diff --git a/typings/index.d.ts b/typings/index.d.ts index 332f33d6f..12aad2f51 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1025,7 +1025,11 @@ export class Interaction extends Base { public type: InteractionType; public user: User; public version: number; - public inGuild(): this is this & { guildId: Snowflake; member: GuildMember | APIInteractionGuildMember }; + public inGuild(): this is this & { + guildId: Snowflake; + member: GuildMember | APIInteractionGuildMember; + readonly channel: Exclude | null; + }; public isButton(): this is ButtonInteraction; public isCommand(): this is CommandInteraction; public isContextMenu(): this is ContextMenuInteraction;