Undo the change to return

This commit is contained in:
Jason Freeman
2015-04-22 13:38:30 -07:00
parent 4dc9da255f
commit 2a2ef28fc6
2 changed files with 3 additions and 3 deletions

2
src/lib/es6.d.ts vendored
View File

@@ -443,7 +443,7 @@ interface IteratorResult<T> {
interface Iterator<T> {
next(value?: any): IteratorResult<T>;
return?(value?: T): IteratorResult<T>;
return?(value?: any): IteratorResult<T>;
throw?(e?: any): IteratorResult<T>;
}