Fix #10919 - Added IterableIterator forward declaration to enable compilation on targets lower than es2015 (#10943)

* Fix #10919

* Fix IterableIterator<T> is not an Array type error for test when targetting lower than es2015

* Revert "Fix IterableIterator<T> is not an Array type error for test when targetting lower than es2015"

This reverts commit ce1108c87574dca0a47801bf4e7cf818aafae1b4.
This commit is contained in:
Alejandro Sánchez
2016-09-06 08:31:02 -06:00
committed by Masahiro Wakame
parent 6013c413c2
commit 2966b1b8ba

2
node/node.d.ts vendored
View File

@@ -456,6 +456,8 @@ declare namespace NodeJS {
}
}
interface IterableIterator<T> {}
/**
* @deprecated
*/