Skip to content

Commit

Permalink
fix(types): make ComponentSelectOption.description optional (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
LavaDesu authored Jul 20, 2021
1 parent 49b0d7e commit 9b060be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,8 @@ export interface ComponentSelectMenu {
}

export interface ComponentSelectOption {
description: string;
/** The description of this option. */
description?: string;
/** The emoji to show with the option. */
emoji?: PartialEmoji;
/** The label of this option. */
Expand Down

0 comments on commit 9b060be

Please sign in to comment.