Type alias TMenuItemSelect
TMenuItemSelect: TMenuItem & { callback: ((value) => void); initValue: string; type: "select"; values: { label: string; value: string; }[]; } Type declaration
callback: ((value) => void)
- (value): void
Returns void
initValue: string
type: "select"
values: {
label: string;
value: string;
}[]