Skip to content
New issue

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

Make it easier to polyfill built-in extensions #812

Closed

Conversation

RReverser
Copy link
Contributor

This PR adds separate interfaces for constructors, similarly to how lib.es*.d.ts define ECMAScript built-ins.

This ensures that downstream typings can extend built-in constructor with static methods when polyfilling new and/or unstable features.

This was not possible with inline type declarations, because TypeScript does not allow variable declaration merging, but it is possible with a separate interface because you can declare them with the same name downstream, and it will get merged into the base type.

@RReverser RReverser force-pushed the generate-constructor-interfaces branch from 661b11c to ebb6213 Compare December 17, 2019 14:57
This PR adds separate interfaces for constructors, similarly to how lib.es*.d.ts define ECMAScript built-ins.

This ensures that downstream typings can extend built-in constructor with static methods when polyfilling new and/or unstable features.

This was not possible with inline type declarations, because TypeScript does not allow variable declaration merging, but it is possible with a separate interface because you can declare them with the same name downstream, and it will get merged into the base type.
@RReverser RReverser force-pushed the generate-constructor-interfaces branch from ebb6213 to 126f9ab Compare December 17, 2019 15:00
@saschanaz
Copy link
Contributor

saschanaz commented Dec 17, 2019

This idea has been rejected because it would generate too many new global names and thus would cause more global pollution.

@RReverser
Copy link
Contributor Author

@saschanaz Well it aligns better with built-in ECMAScript APIs, and not doing this is causing real problems (unability to polyfill static methods).

For example, right now I'm blocked on this (or any alternative solution) to be able to define types for js-types proposal of WebAssembly that adds static type() to a bunch of built-ins, and there's no workaround that I know of, and I'm sure this is not the only API that is running into similar issues.

@RReverser
Copy link
Contributor Author

If the concern is specifically the global namespace, we could put all these declarations into some sort of artificial module e.g.

declare module 'dom-constructors' {
  interface AbortController { ... }
  ...
}

var AbortController: import('dom-constructors').AbortController;

@RReverser
Copy link
Contributor Author

For the reference: #222 (comment) seems like even a better option, and would also allow extending built-ins.

@RReverser RReverser closed this Dec 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants