mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23:31 +01:00
types(MessageComponentInteraction): fix componentType (#6536)
This commit is contained in:
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
@@ -1251,7 +1251,7 @@ export class MessageComponentInteraction extends Interaction {
|
|||||||
public constructor(client: Client, data: RawMessageComponentInteractionData);
|
public constructor(client: Client, data: RawMessageComponentInteractionData);
|
||||||
public readonly channel: TextBasedChannels | null;
|
public readonly channel: TextBasedChannels | null;
|
||||||
public readonly component: MessageActionRowComponent | Exclude<APIMessageComponent, APIActionRowComponent> | null;
|
public readonly component: MessageActionRowComponent | Exclude<APIMessageComponent, APIActionRowComponent> | null;
|
||||||
public componentType: MessageComponentType;
|
public componentType: Exclude<MessageComponentType, 'ACTION_ROW'>;
|
||||||
public customId: string;
|
public customId: string;
|
||||||
public deferred: boolean;
|
public deferred: boolean;
|
||||||
public ephemeral: boolean | null;
|
public ephemeral: boolean | null;
|
||||||
|
|||||||
Reference in New Issue
Block a user