* Synchronously read from the file into an array buffer (`p`). * * Returns either the number of bytes read during the operation or EOF * (`null`) if there was nothing more to read. * * It is possible for a read to successfully return with `0` bytes. This * does not indicate EOF.
(p: Uint8Array)
| 340 | * ``` |
| 341 | */ |
| 342 | readSync(p: Uint8Array): number | null; |
| 343 | /** |
| 344 | * Set TTY to be under raw mode or not. In raw mode, characters are read and |
| 345 | * returned as is, without being processed. All special processing of |
no outgoing calls
no test coverage detected