types.ts 259 B

1234567891011
  1. export interface ICheckPanelProps {
  2. dataSource: any[]
  3. defaultKeys?: any[]
  4. labelKey?: string
  5. valueKey?: string
  6. placeholder?: string
  7. labelInValue?: boolean
  8. closableByTag?: boolean
  9. tokenSeparators?: string[]
  10. onChange?: (targets: any[]) => any
  11. }