diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index bf96983174b0..47cf242e2251 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -1501,7 +1501,11 @@ export type Interaction = | AutocompleteInteraction | ModalSubmitInteraction; -export type RepliableInteraction = Exclude; +export type RepliableInteraction = Exclude< + Interaction, + AutocompleteInteraction +>; + export class BaseInteraction extends Base { // This a technique used to brand different cached types. Or else we'll get `never` errors on typeguard checks. private readonly _cacheType: Cached;