(
path: string,
options?: StateTreeOptions
)
| 183 | } |
| 184 | |
| 185 | async walkTree( |
| 186 | path: string, |
| 187 | options?: StateTreeOptions |
| 188 | ): Promise<StateTreeNode> { |
| 189 | return buildTree(path, this.createTreeOps(), options); |
| 190 | } |
| 191 | |
| 192 | async summarizeTree( |
| 193 | path: string, |
no test coverage detected