Skip to content

Commit 995f6d0

Browse files
authored
fix: updating types export
Incluindo DiscordSelectMenuProps and DicordSelectMenuOptionProps in types
1 parent 227a818 commit 995f6d0

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/core/src/types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
export type DiscordTimestamp = Date | string | null;
22

3+
export interface DiscordSelectMenuProps {
4+
disabled?: boolean;
5+
placeholder?: string;
6+
}
7+
8+
export interface DicordSelectMenuOptionProps {
9+
description?: string;
10+
emoji?: string;
11+
emojiName?: string;
12+
label?: string;
13+
}
14+
315
export interface DiscordButtonProps {
416
disabled?: boolean;
517
emoji?: string;

0 commit comments

Comments
 (0)