(path: string, content: string)
| 43 | } |
| 44 | |
| 45 | async writeFile(path: string, content: string): Promise<void> { |
| 46 | await this.ws.writeFile(path, content); |
| 47 | } |
| 48 | |
| 49 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 50 | await this.ws.writeFileBytes(path, content); |