(
path: string,
options?: StateFindOptions
)
| 176 | } |
| 177 | |
| 178 | async find( |
| 179 | path: string, |
| 180 | options?: StateFindOptions |
| 181 | ): Promise<StateFindEntry[]> { |
| 182 | return findInTree(path, this.createTreeOps(), options); |
| 183 | } |
| 184 | |
| 185 | async walkTree( |
| 186 | path: string, |
nothing calls this directly
no test coverage detected