From 7e7c310f87207c3dc005bee3639f96c186eab033 Mon Sep 17 00:00:00 2001 From: Wayne Dela Cruz Date: Sun, 12 Mar 2017 20:53:01 +0800 Subject: [PATCH] Remove no-implicit-any errors --- async/test/es6-generators.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/async/test/es6-generators.ts b/async/test/es6-generators.ts index 998a1823e5..2a7328a09a 100644 --- a/async/test/es6-generators.ts +++ b/async/test/es6-generators.ts @@ -50,5 +50,5 @@ async.detect(collectionGenerator(), booleanIterator, function (err: Error, res: async.detectLimit(collectionGenerator(), 2, booleanIterator, function (err: Error, res: boolean) { }) async.detectSeries(collectionGenerator(), booleanIterator, function (err: Error, res: boolean) { }) -async.concat(collectionGenerator(), concatIterator, (err: Error, res) => { }) -async.concatSeries(collectionGenerator(), concatIterator, (err: Error, res) => { }) +async.concat(collectionGenerator(), concatIterator, (err: Error, res: any[]) => { }) +async.concatSeries(collectionGenerator(), concatIterator, (err: Error, res: any[]) => { })