| 805 | * Options for decompressing a DEFLATE stream |
| 806 | */ |
| 807 | export interface InflateStreamOptions { |
| 808 | /** |
| 809 | * The dictionary used to compress the original data. If no dictionary was used during compression, this option has no effect. |
| 810 | * |
| 811 | * Supplying the wrong dictionary during decompression usually yields corrupt output or causes an invalid distance error. |
| 812 | */ |
| 813 | dictionary?: Uint8Array; |
| 814 | } |
| 815 | |
| 816 | /** |
| 817 | * Options for decompressing DEFLATE data |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…