(
_path: string,
_data: string | Buffer,
_options?: { encoding?: BufferEncoding; mode?: number } | BufferEncoding,
)
| 490 | } |
| 491 | |
| 492 | appendFile( |
| 493 | _path: string, |
| 494 | _data: string | Buffer, |
| 495 | _options?: { encoding?: BufferEncoding; mode?: number } | BufferEncoding, |
| 496 | ): Promise<void> { |
| 497 | return Promise.reject(notImplemented("appendFile")); |
| 498 | } |
| 499 | |
| 500 | appendFileSync( |
| 501 | _path: string, |
nothing calls this directly
no test coverage detected