(
root: string,
ops: TreeOps,
options: StateTreeOptions = {}
)
| 82 | } |
| 83 | |
| 84 | export async function buildTree( |
| 85 | root: string, |
| 86 | ops: TreeOps, |
| 87 | options: StateTreeOptions = {} |
| 88 | ): Promise<StateTreeNode> { |
| 89 | const seenDepth = options.maxDepth ?? Number.POSITIVE_INFINITY; |
| 90 | return buildTreeNode(root, 0, seenDepth, ops); |
| 91 | } |
| 92 | |
| 93 | export async function summarizeTree( |
| 94 | root: string, |
no test coverage detected