@types/unzipper
Advanced tools
Comparing version 0.9.2 to 0.10.0
@@ -1,2 +0,2 @@ | ||
// Type definitions for unzipper 0.9 | ||
// Type definitions for unzipper 0.10 | ||
// Project: https://github.com/ZJONSSON/node-unzipper#readme | ||
@@ -6,2 +6,3 @@ // Definitions by: s73obrien <https://github.com/s73obrien> | ||
// Bart <https://github.com/bartje321> | ||
// Ken Human <https://github.com/kenhuman> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -84,2 +85,3 @@ // TypeScript Version: 2.2 | ||
files: File[]; | ||
extract: (opts: ParseOptions) => ParseStream; | ||
} | ||
@@ -105,3 +107,7 @@ | ||
offsetToLocalFileHeader: number; | ||
pathBuffer: Buffer; | ||
path: string; | ||
isUnicode: number; | ||
extra: any; | ||
type: 'Directory' | 'File'; | ||
comment: string; | ||
@@ -112,6 +118,6 @@ stream: (password?: string) => Entry; | ||
export class ParseOptions { | ||
export interface ParseOptions { | ||
verbose?: boolean; | ||
path?: string; | ||
// more options? | ||
concurrency?: number; | ||
} | ||
@@ -118,0 +124,0 @@ |
{ | ||
"name": "@types/unzipper", | ||
"version": "0.9.2", | ||
"version": "0.10.0", | ||
"description": "TypeScript definitions for unzipper", | ||
@@ -21,2 +21,7 @@ "license": "MIT", | ||
"githubUsername": "bartje321" | ||
}, | ||
{ | ||
"name": "Ken Human", | ||
"url": "https://github.com/kenhuman", | ||
"githubUsername": "kenhuman" | ||
} | ||
@@ -35,4 +40,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "45dbc54a037441a3872d3a9d8e455deaeecc8a32b9ba308aaf44ba940de1e6c3", | ||
"typesPublisherContentHash": "c9c32be144da40d1a0e45d8194341de9f6cad72769d74d6c58ab704c1d2576b9", | ||
"typeScriptVersion": "2.2" | ||
} |
@@ -5,3 +5,3 @@ # Installation | ||
# Summary | ||
This package contains type definitions for unzipper ( https://github.com/ZJONSSON/node-unzipper#readme ). | ||
This package contains type definitions for unzipper (https://github.com/ZJONSSON/node-unzipper#readme). | ||
@@ -12,3 +12,3 @@ # Details | ||
Additional Details | ||
* Last updated: Tue, 23 Apr 2019 20:13:46 GMT | ||
* Last updated: Thu, 25 Jul 2019 19:40:27 GMT | ||
* Dependencies: @types/node | ||
@@ -18,2 +18,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by s73obrien <https://github.com/s73obrien>, Nate <https://github.com/natemara>, Bart <https://github.com/bartje321>. | ||
These definitions were written by s73obrien <https://github.com/s73obrien>, Nate <https://github.com/natemara>, Bart <https://github.com/bartje321>, and Ken Human <https://github.com/kenhuman>. |
6473
113