selectitem.d.ts 156 B

12345678
  1. export interface SelectItem {
  2. label?: string;
  3. value: any;
  4. styleClass?: string;
  5. icon?: string;
  6. title?: string;
  7. disabled?: boolean;
  8. }