1
0
mirror of https://github.com/Eugeny/tabby.git synced 2025-08-13 04:41:54 +00:00
Files
tabby/terminus-core/src/api/menu.ts
2021-05-24 17:48:12 +02:00

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
}