Socket
Socket
Sign inDemoInstall

@types/sharp

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/sharp - npm Package Compare versions

Comparing version 0.17.4 to 0.17.5

208

sharp/index.d.ts

@@ -12,6 +12,6 @@ // Type definitions for sharp 0.17

* Creates a sharp instance from an image
* @param {string} input Buffer containing JPEG, PNG, WebP, GIF, SVG, TIFF or raw pixel image data, or String containing the path to an JPEG, PNG, WebP, GIF, SVG or TIFF image file.
* @param {sharp.SharpOptions} options Object with optional attributes.
* @param input Buffer containing JPEG, PNG, WebP, GIF, SVG, TIFF or raw pixel image data, or String containing the path to an JPEG, PNG, WebP, GIF, SVG or TIFF image file.
* @param options Object with optional attributes.
* @throws {Error} Invalid parameters
* @returns {sharp.SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -26,4 +26,3 @@ declare function sharp(input?: string | Buffer, options?: sharp.SharpOptions): sharp.SharpInstance;

* This method always returns cache statistics, useful for determining how much working memory is required for a particular task.
* @param {boolean|sharp.CacheOptions} options Object with the cache options, or Boolean where true uses default cache settings and false removes all caching.
* @returns {Object}
* @param options Object with the cache options, or Boolean where true uses default cache settings and false removes all caching.
*/

@@ -33,3 +32,3 @@ function cache(options?: boolean | CacheOptions): CacheResult;

* Gets, or when a concurrency is provided sets, the number of threads libvips' should create to process each image.
* @param {number} concurrency concurrency value
* @param concurrency concurrency value
*/

@@ -39,3 +38,3 @@ function concurrency(threads?: number): number;

* Provides access to internal task counters.
* @returns {sharp.SharpCounters} Object containing task counters
* @returns Object containing task counters
*/

@@ -45,4 +44,4 @@ function counters(): SharpCounters;

* Get and set use of SIMD vector unit instructions.
* @param {boolean} enable enable or disable use of SIMD vector unit instructions
* @returns {boolean} true if usage of SIMD vector unit instructions is enabled
* @param enable enable or disable use of SIMD vector unit instructions
* @returns true if usage of SIMD vector unit instructions is enabled
*/

@@ -90,3 +89,3 @@ function simd(enable?: boolean): boolean;

* Fast access to image metadata without decoding any compressed image data.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -96,3 +95,3 @@ metadata(callback: (err: Error, metadata: Metadata) => void): SharpInstance;

* Fast access to image metadata without decoding any compressed image data.
* @returns {Promise<Metadata>} A promise that fulfills with a metadata object.
* @returns A promise that fulfills with a metadata object.
*/

@@ -102,3 +101,3 @@ metadata(): Promise<Metadata>;

* Take a "snapshot" of the Sharp instance, returning a new instance.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -108,4 +107,4 @@ clone(): SharpInstance;

* An advanced setting that switches the libvips access method to VIPS_ACCESS_SEQUENTIAL.
* @param {boolean} sequentialRead true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param sequentialRead true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -115,5 +114,5 @@ sequentialRead(sequentialRead?: boolean): SharpInstance;

* Do not process input images where the number of pixels (width _ height) exceeds this limit.
* @param {number|boolean} pixels An integral Number of pixels, zero or false to remove limit, true to use default limit.
* @param pixels An integral Number of pixels, zero or false to remove limit, true to use default limit.
* @throws {Error} Invalid limit
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -123,7 +122,7 @@ limitInputPixels(pixels: number | boolean): SharpInstance;

* Resize image to width x height. By default, the resized image is centre cropped to the exact size specified.
* @param {number} width pixels wide the resultant image should be, between 1 and 16383 (0x3FFF). Use null or undefined to auto-scale the width to match the height.
* @param {number} height pixels high the resultant image should be, between 1 and 16383. Use null or undefined to auto-scale the height to match the width.
* @param {ResizeOptions} options resize options
* @param width pixels wide the resultant image should be, between 1 and 16383 (0x3FFF). Use null or undefined to auto-scale the width to match the height.
* @param height pixels high the resultant image should be, between 1 and 16383. Use null or undefined to auto-scale the height to match the width.
* @param options resize options
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -133,5 +132,5 @@ resize(width?: number, height?: number, options?: ResizeOptions): SharpInstance;

* Crop the resized image to the exact size specified, the default behaviour.
* @param {number|string} crop A member of sharp.gravity to crop to an edge/corner or sharp.strategy to crop dynamically. (optional, default 'centre')
* @param crop A member of sharp.gravity to crop to an edge/corner or sharp.strategy to crop dynamically. (optional, default 'centre')
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -141,3 +140,3 @@ crop(crop?: number | string): SharpInstance;

* Preserving aspect ratio, resize the image to the maximum width or height specified then embed on a background of the exact width and height specified.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -147,3 +146,3 @@ embed(): SharpInstance;

* Preserving aspect ratio, resize the image to be as large as possible while ensuring its dimensions are less than or equal to the width and height specified.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -153,3 +152,3 @@ max(): SharpInstance;

* Preserving aspect ratio, resize the image to be as small as possible while ensuring its dimensions are greater than or equal to the width and height specified.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -159,4 +158,4 @@ min(): SharpInstance;

* Do not enlarge the output image if the input image width or height are already less than the required dimensions.
* @param {boolean} withoutEnlargement true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param withoutEnlargement true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -170,5 +169,5 @@ withoutEnlargement(withoutEnlargement?: boolean): SharpInstance;

* Extract a region of the image.
* @param {Region} region Region to extract
* @param region Region to extract
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -178,5 +177,5 @@ extract(region: Region): SharpInstance;

* Trim "boring" pixels from all edges that contain values within a percentage similarity of the top-left pixel.
* @param {number} tolerance value between 1 and 99 representing the percentage similarity. (optional, default 10)
* @param tolerance value between 1 and 99 representing the percentage similarity. (optional, default 10)
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -186,5 +185,5 @@ trim(tolerance?: number): SharpInstance;

* Set the background for the embed, flatten and extend operations. The default background is {r: 0, g: 0, b: 0, alpha: 1}, black without transparency.
* @param {RGBA|string} rgba String or Object parsed by the color module to extract values for red, green, blue and alpha.
* @param rgba String or Object parsed by the color module to extract values for red, green, blue and alpha.
* @throws {Error} Invalid parameter
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -194,4 +193,4 @@ background(rgba?: RGBA | string): SharpInstance; // Wait for typings to fetch latest color typings from DT

* Merge alpha transparency channel, if any, with background.
* @param {boolean} flatten true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param flatten true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -201,5 +200,5 @@ flatten(flatten?: boolean): SharpInstance;

* Extends/pads the edges of the image with the colour provided to the background method.
* @param {number|ExtendOptions} extend single pixel count to add to all edges or an Object with per-edge counts
* @param extend single pixel count to add to all edges or an Object with per-edge counts
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -209,4 +208,4 @@ extend(extend: number | ExtendOptions): SharpInstance;

* Produce the "negative" of the image.
* @param {boolean} negate true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param negate true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -216,5 +215,5 @@ negate(negate?: boolean): SharpInstance;

* Rotate the output image by either an explicit angle or auto-orient based on the EXIF Orientation tag.
* @param {number} angle 0, 90, 180 or 270. (optional, default auto)
* @param angle 0, 90, 180 or 270. (optional, default auto)
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -224,4 +223,4 @@ rotate(angle?: number): SharpInstance;

* Flip the image about the vertical Y axis.
* @param {boolean} flip true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param flip true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -231,4 +230,4 @@ flip(flip?: boolean): SharpInstance;

* Flop the image about the horizontal X axis.
* @param {boolean} flop true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param flop true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -238,5 +237,5 @@ flop(flop?: boolean): SharpInstance;

* Blur the image.
* @param {number} sigma a value between 0.3 and 1000 representing the sigma of the Gaussian mask, where sigma = 1 + radius / 2.
* @param sigma a value between 0.3 and 1000 representing the sigma of the Gaussian mask, where sigma = 1 + radius / 2.
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -246,5 +245,5 @@ blur(sigma?: number): SharpInstance;

* Convolve the image with the specified kernel.
* @param {Kernel} kernel the specified kernel
* @param kernel the specified kernel
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -254,7 +253,7 @@ convolve(kernel: Kernel): SharpInstance;

* Sharpen the image.
* @param {number} sigma the sigma of the Gaussian mask, where sigma = 1 + radius / 2.
* @param {number} flat the level of sharpening to apply to "flat" areas. (optional, default 1.0)
* @param {number} jagged the level of sharpening to apply to "jagged" areas. (optional, default 2.0)
* @param sigma the sigma of the Gaussian mask, where sigma = 1 + radius / 2.
* @param flat the level of sharpening to apply to "flat" areas. (optional, default 1.0)
* @param jagged the level of sharpening to apply to "jagged" areas. (optional, default 2.0)
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -264,6 +263,6 @@ sharpen(sigma?: number, flat?: number, jagged?: number): SharpInstance;

* Any pixel value greather than or equal to the threshold value will be set to 255, otherwise it will be set to 0.
* @param {number} threshold a value in the range 0-255 representing the level at which the threshold will be applied. (optional, default 128)
* @param {ThresholdOptions} options threshold options
* @param threshold a value in the range 0-255 representing the level at which the threshold will be applied. (optional, default 128)
* @param options threshold options
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -273,5 +272,5 @@ threshold(threshold?: number, options?: ThresholdOptions): SharpInstance;

* Apply a gamma correction by reducing the encoding (darken) pre-resize at a factor of 1/gamma then increasing the encoding (brighten) post-resize at a factor of gamma.
* @param {number} gamma value between 1.0 and 3.0. (optional, default 2.2)
* @param gamma value between 1.0 and 3.0. (optional, default 2.2)
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -287,4 +286,4 @@ gamma(gamma?: number): SharpInstance;

* An alpha channel may be present, and will be unchanged by the operation.
* @param {boolean} grayscale true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param grayscale true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -299,4 +298,4 @@ grayscale(grayscale?: boolean): SharpInstance;

* An alpha channel may be present, and will be unchanged by the operation.
* @param {boolean} greyscale true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param greyscale true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -306,4 +305,4 @@ greyscale(greyscale?: boolean): SharpInstance;

* Enhance output image contrast by stretching its luminance to cover the full dynamic range.
* @param {boolean} normalize true to enable and false to disable (defaults to true)
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param normalize true to enable and false to disable (defaults to true)
* @returns A sharp instance that can be used to chain operations
*/

@@ -314,3 +313,3 @@ normalize(normalize?: boolean): SharpInstance;

* Enhance output image contrast by stretching its luminance to cover the full dynamic range.
* @param {boolean} normalise true to enable and false to disable (defaults to true)
* @param normalise true to enable and false to disable (defaults to true)
*/

@@ -320,5 +319,5 @@ normalise(normalise?: boolean): SharpInstance;

* Overlay (composite) an image over the processed (resized, extracted etc.) image.
* @param {string|Buffer} image Buffer containing image data or String containing the path to an image file.
* @param {OverlayOptions} options overlay options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param image Buffer containing image data or String containing the path to an image file.
* @param options overlay options
* @returns A sharp instance that can be used to chain operations
*/

@@ -328,5 +327,5 @@ overlayWith(image: string | Buffer, options?: OverlayOptions): SharpInstance;

* Set the output colourspace.
* @param {string} colourspace output colourspace e.g. srgb, rgb, cmyk, lab, b-w ...
* @param colourspace output colourspace e.g. srgb, rgb, cmyk, lab, b-w ...
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -337,5 +336,5 @@ toColourspace(colourspace?: string): SharpInstance;

* Set the output colorspace.
* @param {string} colorspace output colourspace e.g. srgb, rgb, cmyk, lab, b-w ...
* @param colorspace output colourspace e.g. srgb, rgb, cmyk, lab, b-w ...
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -345,5 +344,5 @@ toColorspace(colorspace: string): SharpInstance;

* Extract a single channel from a multi-channel image.
* @param {number|string} channel zero-indexed band number to extract, or red, green or blue as alternative to 0, 1 or 2 respectively.
* @param channel zero-indexed band number to extract, or red, green or blue as alternative to 0, 1 or 2 respectively.
* @throws {Error} Invalid channel
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -353,6 +352,6 @@ extractChannel(channel: number | string): SharpInstance;

* Join one or more channels to the image. The meaning of the added channels depends on the output colourspace, set with toColourspace().
* @param {string|string[]|Buffer|Buffer[]} channels one or more images (file paths, Buffers).
* @param {{raw:Raw}} options image options
* @param channels one or more images (file paths, Buffers).
* @param options image options
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -362,4 +361,4 @@ joinChannel(channels: string | string[] | Buffer | Buffer[], options?: { raw: Raw }): SharpInstance;

* Perform a bitwise boolean operation on all input image channels (bands) to produce a single channel output image.
* @param {string} boolOp one of and, or or eor to perform that bitwise operation, like the C logic operators &, | and ^ respectively.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @param boolOp one of and, or or eor to perform that bitwise operation, like the C logic operators &, | and ^ respectively.
* @returns A sharp instance that can be used to chain operations
*/

@@ -369,7 +368,7 @@ bandbool(boolOp: string): SharpInstance;

* Perform a bitwise boolean operation with operand image.
* @param {string|Buffer} image Buffer containing image data or String containing the path to an image file.
* @param {strip} operator one of and, or or eor to perform that bitwise operation, like the C logic operators &, | and ^ respectively.
* @param {{raw:Raw}} options describes operand when using raw pixel data.
* @param image Buffer containing image data or String containing the path to an image file.
* @param operator one of and, or or eor to perform that bitwise operation, like the C logic operators &, | and ^ respectively.
* @param options describes operand when using raw pixel data.
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -379,6 +378,6 @@ boolean(operand: string | Buffer, operator: string, options?: { raw: Raw }): SharpInstance;

* Write output image data to a file.
* @param {string} fileOut The path to write the image data to.
* @param {Function} callback Callback function called on completion with two arguments (err, info). info contains the output image format, size (bytes), width, height and channels.
* @param fileOut The path to write the image data to.
* @param callback Callback function called on completion with two arguments (err, info). info contains the output image format, size (bytes), width, height and channels.
* @throws {Error} Invalid parameters
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -388,5 +387,5 @@ toFile(fileOut: string, callback: (err: Error, info: OutputInfo) => void): SharpInstance;

* Write output image data to a file.
* @param {string} fileOut The path to write the image data to.
* @param fileOut The path to write the image data to.
* @throws {Error} Invalid parameters
* @returns {Promise<OutputInfo>} A promise that fulfills with an object containing informations on the resulting file
* @returns A promise that fulfills with an object containing informations on the resulting file
*/

@@ -396,3 +395,3 @@ toFile(fileOut: string): Promise<OutputInfo>;

* Write output to a Buffer. JPEG, PNG, WebP, and RAW output are supported. By default, the format will match the input image, except GIF and SVG input which become PNG output.
* @param {Function} callback Callback function called on completion with three arguments (err, buffer, info).
* @param callback Callback function called on completion with three arguments (err, buffer, info).
* err is an error message, if any.

@@ -402,3 +401,3 @@ * buffer is the output image data.

* A Promises/A+ promise is returned when callback is not provided.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -408,3 +407,3 @@ toBuffer(callback: (err: Error, buffer: Buffer, info: OutputInfo) => void): SharpInstance;

* Write output to a Buffer. JPEG, PNG, WebP, and RAW output are supported. By default, the format will match the input image, except GIF and SVG input which become PNG output.
* @returns {Promise<Buffer>} A promise that fulfills with the resulting Buffer
* @returns A promise that fulfills with the resulting Buffer
*/

@@ -414,5 +413,5 @@ toBuffer(): Promise<Buffer>;

* Use these JPEG options for output image.
* @param {JpegOptions} options Output options.
* @param options Output options.
* @throws {Error} Invalid options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -422,5 +421,5 @@ jpeg(options?: JpegOptions): SharpInstance;

* Use these PNG options for output image.
* @param {PngOptions} options Output options.
* @param options Output options.
* @throws {Error} Invalid options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -430,5 +429,5 @@ png(options?: PngOptions): SharpInstance;

* Use these WebP options for output image.
* @param {OutputOptions} options Output options.
* @param options Output options.
* @throws {Error} Invalid options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -438,5 +437,5 @@ webp(options?: OutputOptions): SharpInstance;

* Use these TIFF options for output image.
* @param {OutputOptions} options Output options.
* @param options Output options.
* @throws {Error} Invalid options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -446,3 +445,3 @@ tiff(options?: OutputOptions): SharpInstance;

* Force output to be raw, uncompressed uint8 pixel data.
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -452,6 +451,6 @@ raw(): SharpInstance;

* Force output to a given format.
* @param {string|AvailableFormatInfo} format a String or an Object with an 'id' attribute
* @param {OutputOptions|JpegOptions|PngOptions} options output options
* @param format a String or an Object with an 'id' attribute
* @param options output options
* @throws {Error} Unsupported format or options
* @returns {SharpInstance} A sharp instance that can be used to chain operations
* @returns A sharp instance that can be used to chain operations
*/

@@ -463,3 +462,2 @@ toFormat(format: string | AvailableFormatInfo, options?: OutputOptions | JpegOptions | PngOptions): SharpInstance;

* This will also convert to and add a web-friendly sRGB ICC profile.
* @param {Metadata}
* @throws {Error} Invalid parameters.

@@ -471,3 +469,3 @@ */

* Use a .zip or .szi file extension with toFile to write to a compressed archive file format.
* @param {TileOptions} options options
* @param options options
*/

@@ -474,0 +472,0 @@ tile(options: TileOptions): SharpInstance;

{
"name": "@types/sharp",
"version": "0.17.4",
"version": "0.17.5",
"description": "TypeScript definitions for sharp",

@@ -9,3 +9,4 @@ "license": "MIT",

"name": "François Nguyen",
"url": "https://github.com/lith-light-g"
"url": "https://github.com/lith-light-g",
"githubUsername": "lith-light-g"
}

@@ -22,4 +23,4 @@ ],

},
"typesPublisherContentHash": "79cbec9506723da972435216c3e74a7fac017d5c3c7bf0b7dbb9715e45a04044",
"typesPublisherContentHash": "b8f521d95df31792002a7d8f42c6f54589f0c22bb1218d1d8c175209c7a8e789",
"typeScriptVersion": "2.0"
}

@@ -11,3 +11,3 @@ # Installation

Additional Details
* Last updated: Mon, 21 Aug 2017 22:03:22 GMT
* Last updated: Wed, 25 Oct 2017 16:18:58 GMT
* Dependencies: stream, node

@@ -14,0 +14,0 @@ * Global values: none

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc