Skip to content

Commit

Permalink
types(MessageComponentInteraction): fix componentType (#6536)
Browse files Browse the repository at this point in the history
  • Loading branch information
ImRodry committed Aug 29, 2021
1 parent b89280a commit 0fe5f88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/index.d.ts
Expand Up @@ -1251,7 +1251,7 @@ export class MessageComponentInteraction extends Interaction {
public constructor(client: Client, data: RawMessageComponentInteractionData);
public readonly channel: TextBasedChannels | null;
public readonly component: MessageActionRowComponent | Exclude<APIMessageComponent, APIActionRowComponent> | null;
public componentType: MessageComponentType;
public componentType: Exclude<MessageComponentType, 'ACTION_ROW'>;
public customId: string;
public deferred: boolean;
public ephemeral: boolean | null;
Expand Down

0 comments on commit 0fe5f88

Please sign in to comment.