UNPKG

google-closure-compiler

Version:

Check, compile, optimize and compress Javascript with Closure-Compiler

387 lines (309 loc) • 5.17 kB
/* * Copyright 2012 The Closure Compiler Authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @fileoverview Definitions for node's zlib module. Depends on the events and buffer modules. * @see http://nodejs.org/api/zlib.html * @see https://github.com/joyent/node/blob/master/lib/zlib.js */ var stream = require('stream'); /** * @const */ var zlib = {}; /** * @typedef {{chunkSize: ?number, windowBits: ?number, level: ?number, memLevel: ?number, strategy: ?number, dictionary: ?Object}} */ zlib.Options; /** * @constructor * @extends stream.Transform */ zlib.Zlib = function() {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.Gzip = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.Gunzip = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.Deflate = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.Inflate = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.DeflateRaw = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.InflateRaw = function(options) {}; /** * @param {zlib.Options} options * @constructor * @extends zlib.Zlib */ zlib.Unzip = function(options) {}; /** * @param {zlib.Options} options * @return {zlib.Gzip} */ zlib.createGzip; /** * @param {zlib.Options} options * @return {zlib.Gunzip} */ zlib.createGunzip; /** * @param {zlib.Options} options * @return {zlib.Deflate} */ zlib.createDeflate; /** * @param {zlib.Options} options * @return {zlib.Inflate} */ zlib.createInflate; /** * @param {zlib.Options} options * @return {zlib.DeflateRaw} */ zlib.createDeflateRaw; /** * @param {zlib.Options} options * @return {zlib.InflateRaw} */ zlib.createInflateRaw; /** * @param {zlib.Options} options * @return {zlib.Unzip} */ zlib.createUnzip; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.deflate; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.deflateRaw; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.gzip; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.gunzip; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.inflate; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.inflateRaw; /** * @param {string|Buffer} buf * @param {function(...)} callback * @return {void} */ zlib.unzip; /** * @type {number} * @const */ zlib.Z_NO_FLUSH = 0; /** * @type {number} * @const */ zlib.Z_PARTIAL_FLUSH = 1; /** * @type {number} * @const */ zlib.Z_SYNC_FLUSH = 2; /** * @type {number} * @const */ zlib.Z_FULL_FLUSH = 3; /** * @type {number} * @const */ zlib.Z_FINISH = 4; /** * @type {number} * @const */ zlib.Z_BLOCK = 5; /** * @type {number} * @const */ zlib.Z_TREES = 6; /** * @type {number} * @const */ zlib.Z_OK = 0; /** * @type {number} * @const */ zlib.Z_STREAM_END = 1; /** * @type {number} * @const */ zlib.Z_NEED_DICT = 2; /** * @type {number} * @const */ zlib.Z_ERRNO = -1; /** * @type {number} * @const */ zlib.Z_STREAM_ERROR = -2; /** * @type {number} * @const */ zlib.Z_DATA_ERROR = -3; /** * @type {number} * @const */ zlib.Z_MEM_ERROR = -4; /** * @type {number} * @const */ zlib.Z_BUF_ERROR = -5; /** * @type {number} * @const */ zlib.Z_VERSION_ERROR = -6; /** * @type {number} * @const */ zlib.Z_NO_COMPRESSION = 0; /** * @type {number} * @const */ zlib.Z_BEST_SPEED = 1; /** * @type {number} * @const */ zlib.Z_BEST_COMPRESSION = 9; /** * @type {number} * @const */ zlib.Z_DEFAULT_COMPRESSION = -1; /** * @type {number} * @const */ zlib.Z_FILTERED = 1; /** * @type {number} * @const */ zlib.Z_HUFFMAN_ONLY = 2; /** * @type {number} * @const */ zlib.Z_RLE = 3; /** * @type {number} * @const */ zlib.Z_FIXED = 4; /** * @type {number} * @const */ zlib.Z_DEFAULT_STRATEGY = 0; /** * @type {number} * @const */ zlib.Z_BINARY = 0; /** * @type {number} * @const */ zlib.Z_TEXT = 1; /** * @type {number} * @const */ zlib.Z_ASCII = 1; /** * @type {number} * @const */ zlib.Z_UNKNOWN = 2; /** * @type {number} * @const */ zlib.Z_DEFLATED = 8; /** * @type {number} * @const */ zlib.Z_NULL = 0; module.exports = zlib;