Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/async

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/async - npm Package Compare versions

Comparing version 3.2.3 to 3.2.4

4

async/index.d.ts

@@ -210,4 +210,4 @@ // Type definitions for Async 3.2

export function parallelLimit<T, R, E = Error>(tasks: Array<AsyncFunction<T, E>> | Dictionary<AsyncFunction<T, E>>, limit: number): Promise<R>;
export function whilst<E = Error>(test: () => boolean, fn: AsyncVoidFunction<E>, callback: ErrorCallback<E>): void;
export function whilst<R, E = Error>(test: () => boolean, fn: AsyncVoidFunction<E>): Promise<R>;
export function whilst<E = Error>(test: (cb: (err: any, truth: boolean) => boolean) => boolean, fn: AsyncVoidFunction<E>, callback: ErrorCallback<E>): void;
export function whilst<R, E = Error>(test: (cb: (err: any, truth: boolean) => boolean) => boolean, fn: AsyncVoidFunction<E>): Promise<R>;
export function doWhilst<T, E = Error>(fn: AsyncFunctionEx<T, E>, test: (...results: T[]) => boolean, callback: ErrorCallback<E>): void;

@@ -214,0 +214,0 @@ export function doWhilst<T, R, E = Error>(fn: AsyncFunctionEx<T, E>, test: (...results: T[]) => boolean): Promise<R>;

{
"name": "@types/async",
"version": "3.2.3",
"version": "3.2.4",
"description": "TypeScript definitions for Async",

@@ -62,4 +62,4 @@ "license": "MIT",

"dependencies": {},
"typesPublisherContentHash": "81e047871626508bdf9169741b829f659624ec62fcdfa6ddb9deb317ca2a143c",
"typeScriptVersion": "3.0"
"typesPublisherContentHash": "a39b1e6d179968610731335032c5b4c80b79666a75a9d9257ba1032cf3699eb1",
"typeScriptVersion": "3.2"
}

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

### Additional Details
* Last updated: Fri, 15 May 2020 04:08:47 GMT
* Last updated: Thu, 12 Nov 2020 20:50:55 GMT
* Dependencies: none

@@ -14,0 +14,0 @@ * Global values: `async`

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