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

UnzipFileInfo

Information about a file to be extracted from a ZIP archive

interface UnzipFileInfo {
compression: number;
name: string;
originalSize: number;
size: number;
}

§Properties

§
compression: number
[src]

The compression format for the data stream. This number is determined by the spec in PKZIP's APPNOTE.txt, section 4.4.5. For example, 0 = no compression, 8 = deflate, 14 = LZMA. If the filter function returns true but this value is not 8, the unzip function will throw.

§
name: string
[src]

The name of the file

§
originalSize: number
[src]

The original size of the file

§
size: number
[src]

The compressed size of the file