(path: string, content: Uint8Array)
| 243 | } |
| 244 | |
| 245 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 246 | this.insertContent(path, content); |
| 247 | } |
| 248 | |
| 249 | async appendFile(path: string, content: string | Uint8Array): Promise<void> { |
| 250 | validatePath(path, "append"); |
nothing calls this directly
no test coverage detected