Type alias TMenuItemButton
TMenuItemButton: TMenuItem & { callback: (() => void); icon?: string; tooltip?: { label: string; position: "top" | "left" | "right" | "bottom"; }; type: "button"; } Type declaration
callback: (() => void)
Optional
icon?: string
Optional
tooltip?: {
label: string;
position: "top" | "left" | "right" | "bottom";
}
label: string
position: "top" | "left" | "right" | "bottom"
type: "button"