contextMenu.d.ts 155 B

1234567
  1. export type contextMenuSchema = {
  2. disabled?: boolean
  3. divided?: boolean
  4. icon?: string
  5. label: string
  6. command?: (item: contextMenuSchema) => void
  7. }