Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AsyncInflateOptions

Options for decompressing DEFLATE data asynchronously

interface AsyncInflateOptions extends AsyncOptions, InflateStreamOptions {
size?: number;
}

§Extends

§
AsyncOptions
[src]

§Properties

§
size?: number
[src]

The original size of the data. Currently, the asynchronous API disallows writing into a buffer you provide; the best you can do is provide the size in bytes and be given back a new typed array.