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
any
--noImplicitAny
var x; x = {}; x.a = 0;
var x = {}; x.a = 0;
: any
{}
for .. of
Symbol.Iterator
Symbol.AsyncIterator
Promise
for each (x of y)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Narrowing
any
and--noImplicitAny
var x; x = {}; x.a = 0;
asvar x = {}; x.a = 0;
: any
{}
to beany
for control flow purposesAsync Iterators
for .. of
is whiten the margin of error from generator Downlevelfor .. of
Symbol.Iterator
andSymbol.AsyncIterator
be decided?Promise
to be defined to work, there is no way to specify a specific promise typefor each (x of y)
The text was updated successfully, but these errors were encountered: