props.ts 253 B

1234567891011
  1. import type { ClSelectOption } from "../../types";
  2. export type ClSelectPickerViewProps = {
  3. className?: string;
  4. headers?: string[];
  5. value?: number[];
  6. columns?: ClSelectOption[][];
  7. itemHeight?: number;
  8. height?: number;
  9. resetOnChange?: boolean;
  10. };