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
src/vs/base/common/strings.ts
class X extends Disposable { }
The text was updated successfully, but these errors were encountered:
The root cause is that there's a global Disposable type that comes from globals.d.ts in @types/node
Disposable
globals.d.ts
@types/node
Sorry, something went wrong.
Note that you'd hit this with just plain TS too, if your lib is high enough, since Disposable is a global too:
TypeScript/src/lib/esnext.disposable.d.ts
Line 17 in 29d92ed
Node is just declaring it early because they have the feature.
RyanCavanaugh
Successfully merging a pull request may close this issue.
src/vs/base/common/strings.ts
The text was updated successfully, but these errors were encountered: