mirror of
https://github.com/Eugeny/tabby.git
synced 2025-08-13 04:41:54 +00:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
export interface MenuItemOptions {
|
|
type?: ('normal' | 'separator' | 'submenu' | 'checkbox' | 'radio')
|
|
label?: string
|
|
sublabel?: string
|
|
enabled?: boolean
|
|
checked?: boolean
|
|
submenu?: MenuItemOptions[]
|
|
click?: () => void
|
|
}
|