(
path: string,
content: string,
options?: WriteFileOptions | BufferEncoding
)
| 235 | } |
| 236 | |
| 237 | async writeFile( |
| 238 | path: string, |
| 239 | content: string, |
| 240 | options?: WriteFileOptions | BufferEncoding |
| 241 | ): Promise<void> { |
| 242 | this.insertContent(path, content, getEncoding(options)); |
| 243 | } |
| 244 | |
| 245 | async writeFileBytes(path: string, content: Uint8Array): Promise<void> { |
| 246 | this.insertContent(path, content); |
nothing calls this directly
no test coverage detected