(path: string)
| 407 | // sync with `@cloudflare/shell` rather than re-stating the types. |
| 408 | |
| 409 | async readFile(path: string): Promise<string | null> { |
| 410 | return this.workspace.readFile(path); |
| 411 | } |
| 412 | |
| 413 | async readFileBytes(path: string): Promise<Uint8Array | null> { |
| 414 | return this.workspace.readFileBytes(path); |