(path: string, opts?: Parameters<Workspace["rm"]>[1])
| 450 | } |
| 451 | |
| 452 | async rm(path: string, opts?: Parameters<Workspace["rm"]>[1]): Promise<void> { |
| 453 | return this.workspace.rm(path, opts); |
| 454 | } |
| 455 | |
| 456 | async glob(pattern: string): Promise<FileInfo[]> { |
| 457 | return this.workspace.glob(pattern); |