* Read data from the underlying data source. * * The stream must return exactly `length` bytes or data. If that's not possible * (due to end of file or other error condition), it must throw an ExactReadableEndedError.
(length: number)
| 18 | * (due to end of file or other error condition), it must throw an {@link ExactReadableEndedError}. |
| 19 | */ |
| 20 | readExactly(length: number): Uint8Array; |
| 21 | } |
| 22 | |
| 23 | export class Uint8ArrayExactReadable implements ExactReadable { |
no outgoing calls