(
path: string,
options?: StateTreeOptions
)
| 190 | } |
| 191 | |
| 192 | async summarizeTree( |
| 193 | path: string, |
| 194 | options?: StateTreeOptions |
| 195 | ): Promise<StateTreeSummary> { |
| 196 | return summarizeTree(path, this.createTreeOps(), options); |
| 197 | } |
| 198 | |
| 199 | async searchText( |
| 200 | path: string, |
nothing calls this directly
no test coverage detected