Type alias TMenuItemButtonList
TMenuItemButtonList: TMenuItem & { callback: ((value) => void); initValue: string; tooltip?: { label: string; position: "top" | "left" | "right" | "bottom"; }; type: "list"; values: { label: string; value: string; }[]; } Type declaration
callback: ((value) => void)
- (value): void
Returns void
initValue: string
Optional
tooltip?: {
label: string;
position: "top" | "left" | "right" | "bottom";
}
label: string
position: "top" | "left" | "right" | "bottom"
type: "list"
values: {
label: string;
value: string;
}[]