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
TS 5.6's lib.esnext.iterator.d.ts introduces a new way of defining type defintions (microsoft/TypeScript#58222):
lib.esnext.iterator.d.ts
The lib .d.ts file itself is a module (due to existence of export {};) and uses a declare global block to define some premordial types.
.d.ts
export {};
declare global
Our lib generator needs to support this construct too. (and yes, there are several any in that file which I really want to alter!)
any
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
TS 5.6's
lib.esnext.iterator.d.ts
introduces a new way of defining type defintions (microsoft/TypeScript#58222):The lib
.d.ts
file itself is a module (due to existence ofexport {};
) and uses adeclare global
block to define some premordial types.Our lib generator needs to support this construct too. (and yes, there are several
any
in that file which I really want to alter!)The text was updated successfully, but these errors were encountered: