* Writes `string` to `buf` at `offset` according to the character encoding in`encoding`. The `length` parameter is the number of bytes to write. If `buf` did * not contain enough space to fit the entire string, only part of `string` will be * written. However, partially encoded characters
(string: string, encoding?: BufferEncoding)
| 343 | * @return Number of bytes written. |
| 344 | */ |
| 345 | write(string: string, encoding?: BufferEncoding): number; |
| 346 | write(string: string, offset: number, encoding?: BufferEncoding): number; |
| 347 | write( |
| 348 | string: string, |
no outgoing calls