| 326 | * The classes inheriting from {@link Reader} help to read data from a source of data. The classes inheriting from {@link Writer} help to write data into a destination. |
| 327 | */ |
| 328 | export interface Initializable { |
| 329 | /** |
| 330 | * Initializes the instance asynchronously |
| 331 | */ |
| 332 | init?(): Promise<void>; |
| 333 | } |
| 334 | |
| 335 | /** |
| 336 | * Represents an instance used to read data from a `ReadableStream` instance. |
no outgoing calls
no test coverage detected
searching dependent graphs…