fix incorrect declaration

This commit is contained in:
Tobias Koppers 2020-02-28 11:36:40 +01:00
parent 6daf2ce243
commit 2dc1cf3130
1 changed files with 1 additions and 1 deletions

2
declarations.d.ts vendored
View File

@ -114,7 +114,7 @@ declare module "neo-async" {
): void;
export function queue<T, E>(
worker: AsyncFunction<T, E>,
worker: AsyncIterator<T, E>,
concurrency?: number
): QueueObject<T, E>;