mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 16:57:22 +00:00
fix(types): SelectOption#default is not required (#2066)
* fix(types): is not required * ddcmp Co-authored-by: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com>
This commit is contained in:
@@ -114,7 +114,7 @@ export interface DiscordenoComponent {
|
||||
animated?: boolean;
|
||||
};
|
||||
/** Will render this option as already-selected by default. */
|
||||
default: boolean;
|
||||
default?: boolean;
|
||||
}[];
|
||||
/** A custom placeholder text if nothing is selected. Maximum 100 characters. */
|
||||
placeholder?: string;
|
||||
|
||||
@@ -16,5 +16,5 @@ export interface SelectOption {
|
||||
animated?: boolean;
|
||||
};
|
||||
/** Will render this option as already-selected by default. */
|
||||
default: boolean;
|
||||
default?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user