(path?: string, opts?: Parameters<Workspace["readDir"]>[1])
| 645 | } |
| 646 | |
| 647 | async readDir(path?: string, opts?: Parameters<Workspace["readDir"]>[1]) { |
| 648 | return (await this.parent()).readDir(path ?? "/", opts); |
| 649 | } |
| 650 | |
| 651 | async rm(path: string, opts?: Parameters<Workspace["rm"]>[1]) { |
| 652 | return (await this.parent()).rm(path, opts); |