utils.d.ts 339 B

12345
  1. import { Key } from "react";
  2. import { DageTreeActionData } from "./types";
  3. export declare const findNodeLevel: (nodes: DageTreeActionData[], targetKey: Key, curLevel?: number) => number;
  4. export declare const findKeyPath: (nodes: DageTreeActionData[], targetKey: Key, path?: number[]) => number[] | null;
  5. //# sourceMappingURL=utils.d.ts.map