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
declare const p : { /** @deprecated */ then<T>(cb: (v: any) => T): Promise<T>; }; await p; // should report deprecated 'then' property declare const i: { /** @deprecated */ [Symbol.iterator](): IterableIterator<any>; /** @experimental */ [Symbol.asyncIterator](): AsyncIterableIterator<any> } for (const _ of i) {} // should report deprecated 'Symbol.iterator' property for await (const _ of i) {} // should report experimental 'Symbol.asyncIterator' property declare const i2: { [Symbol.iterator](): { /** @deprecated */ next(): IteratorResult<any> } } for (const _ of i2) {} // should report deprecated 'next' property on iterator
This is certainly possible, but I doubt this is worth the effort.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is certainly possible, but I doubt this is worth the effort.
The text was updated successfully, but these errors were encountered: