Files
tabby/tabby-core/src/api/menu.ts
2022-11-01 17:13:23 +01:00

13 lines
294 B
TypeScript

export interface MenuItemOptions {
type?: ('normal' | 'separator' | 'submenu' | 'checkbox' | 'radio')
label?: string
sublabel?: string
enabled?: boolean
checked?: boolean
submenu?: MenuItemOptions[]
click?: () => void
/** @hidden */
commandLabel?: string
}