| 510 | * Represents an instance used to write data into a `WritableStream` instance. |
| 511 | */ |
| 512 | export interface WritableWriter { |
| 513 | /** |
| 514 | * The `WritableStream` instance. |
| 515 | */ |
| 516 | writable: WritableStream; |
| 517 | /** |
| 518 | * The maximum size of split data when creating a {@link ZipWriter} instance or when calling {@link FileEntry#getData} with a generator of {@link WritableWriter} instances. |
| 519 | */ |
| 520 | maxSize?: number; |
| 521 | } |
| 522 | |
| 523 | /** |
| 524 | * Represents an instance used to write unknown type of data. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…