contextMenu.d.ts 156 B

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