We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: master
https://github.com/Microsoft/TypeScript/blob/master/lib/lib.es2015.iterable.d.ts#L27-L30
Expected behavior:
type IteratorResult<T> = { done: false; value: T; } | { done: true; value?: void; };
Actual behavior:
interface IteratorResult<T> { done: boolean; value: T; }
The text was updated successfully, but these errors were encountered:
I think this is covered by #2983.
Sorry, something went wrong.
Right, thanks.
No branches or pull requests
TypeScript Version: master
https://github.com/Microsoft/TypeScript/blob/master/lib/lib.es2015.iterable.d.ts#L27-L30
Expected behavior:
Actual behavior:
The text was updated successfully, but these errors were encountered: