oa-ui/src/types/contextMenu.d.ts

8 lines
155 B
TypeScript
Raw Normal View History

2024-07-21 05:54:36 +00:00
export type contextMenuSchema = {
disabled?: boolean
divided?: boolean
icon?: string
label: string
command?: (item: contextMenuSchema) => void
}