From a20a1685bd0b9dfc1a8eca78ecd29973da92d85d Mon Sep 17 00:00:00 2001 From: Muhammet Ozturk Date: Fri, 22 Mar 2019 11:33:39 +0300 Subject: [PATCH] class parameter fixing --- types/pako/index.d.ts | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/types/pako/index.d.ts b/types/pako/index.d.ts index 8599976e39..b89a4866d4 100644 --- a/types/pako/index.d.ts +++ b/types/pako/index.d.ts @@ -126,16 +126,6 @@ declare namespace Pako { // https://github.com/nodeca/pako/blob/893381abcafa10fa2081ce60dae7d4d8e873a658/lib/deflate.js class Deflate { constructor(options?: DeflateOptions); - level?: -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9; - windowBits?: number; - memLevel?: number; - strategy?: StrategyValues; - dictionary?: any; - raw?: boolean; - to?: 'string'; - chunkSize?: number; - gzip?: boolean; - header?: Header; err: ReturnCodes; msg: string; result: Uint8Array | number[]; @@ -147,11 +137,6 @@ declare namespace Pako { // https://github.com/nodeca/pako/blob/893381abcafa10fa2081ce60dae7d4d8e873a658/lib/inflate.js class Inflate { constructor(options?: InflateOptions); - windowBits?: number; - dictionary?: any; - raw?: boolean; - to?: 'string'; - chunkSize?: number; header?: Header; err: ReturnCodes; msg: string;