props.ts 238 B

1234567891011
  1. import type { ClTreeItem, ClTreeNodeInfo } from "../../types";
  2. export type ClTreeProps = {
  3. className?: string;
  4. pt?: any;
  5. list?: ClTreeItem[];
  6. icon?: string;
  7. expandIcon?: string;
  8. showCheckbox?: boolean;
  9. checkStrictly?: boolean;
  10. };