(path: string)
| 641 | } |
| 642 | |
| 643 | async exists(path: string) { |
| 644 | return (await this.parent()).exists(path); |
| 645 | } |
| 646 | |
| 647 | async readDir(path?: string, opts?: Parameters<Workspace["readDir"]>[1]) { |
| 648 | return (await this.parent()).readDir(path ?? "/", opts); |