# Class: AsyncInflate Asynchronous streaming DEFLATE decompression ## Hierarchy * **AsyncInflate** ## Index ### Constructors * [constructor](asyncinflate.md#constructor) ### Properties * [ondata](asyncinflate.md#ondata) ### Methods * [push](asyncinflate.md#push) ## Constructors ### constructor \+ **new AsyncInflate**(`cb?`: [AsyncFlateStreamHandler](../README.md#asyncflatestreamhandler)): [AsyncInflate](asyncinflate.md) Creates an asynchronous inflation stream #### Parameters: Name | Type | Description | ------ | ------ | ------ | `cb?` | [AsyncFlateStreamHandler](../README.md#asyncflatestreamhandler) | The callback to call whenever data is deflated | **Returns:** [AsyncInflate](asyncinflate.md) ## Properties ### ondata • **ondata**: [AsyncFlateStreamHandler](../README.md#asyncflatestreamhandler) The handler to call whenever data is available ## Methods ### push ▸ **push**(`chunk`: Uint8Array, `final?`: boolean): void Pushes a chunk to be inflated #### Parameters: Name | Type | Description | ------ | ------ | ------ | `chunk` | Uint8Array | The chunk to push | `final?` | boolean | Whether this is the last chunk | **Returns:** void