Skip to content

Commit

Permalink
fix: emoji typings
Browse files Browse the repository at this point in the history
  • Loading branch information
monbrey committed May 28, 2021
1 parent 0b21e72 commit f58d614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3311,7 +3311,7 @@ declare module 'discord.js' {
interface MessageButtonOptions extends BaseMessageComponentOptions {
customID?: string;
disabled?: boolean;
emoji?: RawEmoji;
emoji?: GuildEmoji | RawEmoji;
label?: string;
style: MessageButtonStyleResolvable;
type: 'BUTTON' | MessageComponentTypes.BUTTON;
Expand Down Expand Up @@ -3476,7 +3476,7 @@ declare module 'discord.js' {
interface MessageSelectOption {
default?: boolean;
description?: string;
emoji?: RawEmoji;
emoji?: Emoji | RawEmoji;
label: string;
value: string;
}
Expand Down

0 comments on commit f58d614

Please sign in to comment.