1 | import { TreeNode, CompositeTreeNode } from '../tree';
|
2 | export declare namespace MockTreeModel {
|
3 | interface Node {
|
4 | readonly id: string;
|
5 | readonly children?: Node[];
|
6 | }
|
7 | namespace Node {
|
8 | function toTreeNode(root: Node, parent?: CompositeTreeNode): TreeNode;
|
9 | }
|
10 | const HIERARCHICAL_MOCK_ROOT: () => TreeNode;
|
11 | const FLAT_MOCK_ROOT: () => TreeNode;
|
12 | }
|
13 | //# sourceMappingURL=mock-tree-model.d.ts.map |
\ | No newline at end of file |