(base: string, path: string)
| 288 | } |
| 289 | |
| 290 | async resolvePath(base: string, path: string): Promise<string> { |
| 291 | return this.fs.resolvePath(base, path); |
| 292 | } |
| 293 | |
| 294 | async glob(pattern: string): Promise<string[]> { |
| 295 | return this.fs.glob(pattern); |
nothing calls this directly
no test coverage detected