Tree.d.ts 101 B

123456
  1. export type TreeData = {
  2. key: string;
  3. label: string;
  4. isDir?: boolean;
  5. children?: TreeData[]
  6. }