From 2dc1cf3130e5210f9d22ff741e7a84b3440c9ba1 Mon Sep 17 00:00:00 2001 From: Tobias Koppers Date: Fri, 28 Feb 2020 11:36:40 +0100 Subject: [PATCH] fix incorrect declaration --- declarations.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/declarations.d.ts b/declarations.d.ts index 580226c4e..09759d094 100644 --- a/declarations.d.ts +++ b/declarations.d.ts @@ -114,7 +114,7 @@ declare module "neo-async" { ): void; export function queue( - worker: AsyncFunction, + worker: AsyncIterator, concurrency?: number ): QueueObject;