Writes `p.byteLength` bytes from `p` to the underlying data * stream. It returns the number of bytes written from `p` (`0` <= `n` * <= `p.byteLength`) and any error encountered that caused the write to * stop early. `writeSync()` must throw a non-null error if it returns `n` < * `p.byteL
(p: Uint8Array)
| 93 | * Implementations should not retain a reference to `p`. |
| 94 | */ |
| 95 | writeSync(p: Uint8Array): number; |
| 96 | } |
| 97 | |
| 98 | /** |
no outgoing calls
no test coverage detected