Sign in

简柏林 / thingskit-scada · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-scada
  • src
  • components
  • Dropdown
  • src
  • typing.ts
  • perf: 重构组态
    06a645b4
    ww authored
    2023-10-31 09:21:38 +0800  
    Browse Files »
typing.ts 229 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export interface DropMenu {
  onClick?: Fn
  to?: string
  icon?: string
  event: string | number
  text: string
  disabled?: boolean
  divider?: boolean
  popConfirm?: {
    icon?: string
    confirm?: Fn
    cancel?: Fn
  }
}