props.ts 354 B

1234567891011121314151617
  1. import type { ClTreeItem, ClTreeNodeInfo } from "../../types";
  2. export type ClTreePassThrough = {
  3. className?: string;
  4. };
  5. export type ClTreeProps = {
  6. className?: string;
  7. pt?: ClTreePassThrough;
  8. modelValue?: any | any;
  9. list?: ClTreeItem[];
  10. icon?: string;
  11. expandIcon?: string;
  12. checkStrictly?: boolean;
  13. checkable?: boolean;
  14. multiple?: boolean;
  15. };