(path: string, content: Uint8Array)
| 47 | } |
| 48 | |
| 49 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 50 | await this.ws.writeFileBytes(path, content); |
| 51 | } |
| 52 | |
| 53 | async appendFile(path: string, content: string | Uint8Array): Promise<void> { |
| 54 | if (typeof content === "string") { |
nothing calls this directly
no test coverage detected