dropdown.ts 289 B

1234567891011121314
  1. export interface DropdownItem {
  2. placeholder?: string;
  3. label: string;
  4. value: string | number | string[] | number[];
  5. prop: string;
  6. keyName?: string;
  7. keyValue?: string;
  8. options?: DropdownOption[];
  9. }
  10. export interface DropdownOption {
  11. label: string;
  12. value: string | number;
  13. }