# Class: Gunzip Streaming single or multi-member GZIP decompression ## Hierarchy * **Gunzip** ## Index ### Constructors * [constructor](gunzip.md#constructor) ### Properties * [ondata](gunzip.md#ondata) * [onmember](gunzip.md#onmember) ### Methods * [push](gunzip.md#push) ## Constructors ### constructor \+ **new Gunzip**(`opts`: [GunzipStreamOptions](../interfaces/gunzipstreamoptions.md), `cb?`: [FlateStreamHandler](../README.md#flatestreamhandler)): [Gunzip](gunzip.md) Creates a GUNZIP stream #### Parameters: Name | Type | Description | ------ | ------ | ------ | `opts` | [GunzipStreamOptions](../interfaces/gunzipstreamoptions.md) | The decompression options | `cb?` | [FlateStreamHandler](../README.md#flatestreamhandler) | The callback to call whenever data is inflated | **Returns:** [Gunzip](gunzip.md) \+ **new Gunzip**(`cb?`: [FlateStreamHandler](../README.md#flatestreamhandler)): [Gunzip](gunzip.md) Creates a GUNZIP stream #### Parameters: Name | Type | Description | ------ | ------ | ------ | `cb?` | [FlateStreamHandler](../README.md#flatestreamhandler) | The callback to call whenever data is inflated | **Returns:** [Gunzip](gunzip.md) ## Properties ### ondata • **ondata**: [FlateStreamHandler](../README.md#flatestreamhandler) The handler to call whenever data is available ___ ### onmember • `Optional` **onmember**: [GunzipMemberHandler](../README.md#gunzipmemberhandler) The handler to call whenever a new GZIP member is found ## Methods ### push ▸ **push**(`chunk`: Uint8Array, `final?`: boolean): void Pushes a chunk to be GUNZIPped #### Parameters: Name | Type | Description | ------ | ------ | ------ | `chunk` | Uint8Array | The chunk to push | `final?` | boolean | Whether this is the last chunk | **Returns:** void