(path: string, query: string)
| 137 | } |
| 138 | |
| 139 | async queryJson(path: string, query: string): Promise<unknown> { |
| 140 | return queryJsonValue(await this.readJson(path), query); |
| 141 | } |
| 142 | |
| 143 | async updateJson( |
| 144 | path: string, |
nothing calls this directly
no test coverage detected