Fix #8357: Remove optionality for the definition of IteratorResult

This commit is contained in:
Mohamed Hegazy
2016-05-03 15:53:17 -07:00
parent f28d535795
commit 9ad08324d8
5 changed files with 97 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
interface IteratorResult<T> {
done: boolean;
value?: T;
value: T;
}
interface Iterator<T> {