Skip to content

Commit

Permalink
update zip docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctalkington committed Aug 27, 2016
1 parent b6a4dfd commit 3ba07b0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/plugins/zip.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ var util = require('archiver-utils');
* @param {Boolean} [options.forceZip64=false] Forces the archive to contain ZIP64 headers.
* @param {Boolean} [options.store=false] Sets the compression method to STORE.
* @param {Object} [options.zlib] Passed to [zlib]{@link https://nodejs.org/api/zlib.html#zlib_class_options}
* @property {ZipStream} [engine]
* @property {ZipStream} engine The ZipStream instance that creates the zip.
*/
var Zip = function(options) {
if (!(this instanceof Zip)) {
Expand Down Expand Up @@ -84,8 +84,6 @@ Zip.prototype.unpipe = function() {

module.exports = Zip;



/**
* @typedef {Object} ZipOptions
* @global
Expand All @@ -112,7 +110,7 @@ module.exports = Zip;
*/

/**
* ZipStream
* @typedef {Object} ZipStream
* @external ZipStream
* @see {@link https://archiverjs.com/zip-stream/ZipStream.html}
*/

0 comments on commit 3ba07b0

Please sign in to comment.