// Type definitions for gzip-js 0.3 // Project: https://github.com/beatgammit/gzip-js // Definitions by: rhysd // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.1 /// export interface ZipOptions { level?: number; name?: string; timestamp?: number; } export function zip(data: string, opts?: ZipOptions): number[]; export function unzip(data: number[] | Buffer | Uint8Array): number[]; export const DEFAULT_LEVEL: number;