Writes `p.byteLength` bytes from `p` to the underlying data stream. It * resolves to the number of bytes written from `p` (`0` <= `n` <= * `p.byteLength`) or reject with the error encountered that caused the * write to stop early. `write()` must reject with a non-null error if * would re
(p: Uint8Array)
| 77 | * Implementations should not retain a reference to `p`. |
| 78 | */ |
| 79 | write(p: Uint8Array): Promise<number>; |
| 80 | } |
| 81 | /** |
| 82 | * An abstract interface which when implemented provides an interface to write |
no outgoing calls
no test coverage detected