TypeScript-DOM-lib-generator
TypeScript-DOM-lib-generator copied to clipboard
Tool for generating dom related TypeScript and JavaScript library files
I see that https://github.com/microsoft/TypeScript-DOM-lib-generator/pull/975 was merged quite a while back, but I can't for the life of me figure out why `window.opener` still has type `any`.
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
Bumps the eslint group with 3 updates in the / directory: [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin), [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) and [eslint](https://github.com/eslint/eslint). Updates `@typescript-eslint/eslint-plugin` from 7.6.0 to 7.15.0 Release notes Sourced from @typescript-eslint/eslint-plugin's releases. v7.15.0 7.15.0 (2024-07-01)...
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.25.7 to 3.25.11. Changelog Sourced from github/codeql-action's changelog. CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language packs. Note...
WebMIDI
Hi there, Could someone please address an issue with the WebMIDI API types [lib.dom.d.ts:14856-15024](https://github.com/microsoft/TypeScript/blob/0b37062eb07d1666245a02471b7d0e80c5d5aa5d/src/lib/dom.generated.d.ts#L14856)? I believe that `MIDIInputMap` should extend `ReadOnlyMap` ([MDN](https://developer.mozilla.org/en-US/docs/Web/API/MIDIInputMap)) and that the `forEach` method could be removed...
Hey, I noticed that the `NotificationOptions` definition doesn't include the [actions option](https://notifications.spec.whatwg.org/#dictdef-notificationoptions). This is the current definition: [dom.generated.d.ts](https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/179bdd84a944933a3103f29c2274c9f5a857b693/baselines/dom.generated.d.ts#L1012) and [serviceworker.generated.d.ts](https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/179bdd84a944933a3103f29c2274c9f5a857b693/baselines/serviceworker.generated.d.ts#L402) Here is the relevant [mdn link](https://developer.mozilla.org/en-US/docs/Web/API/ServiceWorkerRegistration/showNotification#actions). In addition, `timestamp` and...
Hi developers, The return value for CredentialsContainer.create is one of `FederatedCredential`, `PasswordCredential`, and `PublicKeyCredential` according to https://developer.mozilla.org/en-US/docs/Web/API/CredentialsContainer/create#return_value The return types are subclass of Credential. So I changed using `PublicKeyCredential` from...
Reference: https://www.w3.org/TR/webrtc/#event-summary Like #1661, this PR is already covered by #1660. I'm opening it despite this since it seems like that PR has no momentum right now.
Add an override for [`addIceCandidate`][]’s `candidate` parameter to allow it to be `null`, which is a special value indicating that ICE gathering is complete. > If no `candidate` object is...
In WebRTC, the `icecandidate` event’s [`candidate`][] property is either “an `RTCIceCandidate` object … or `null` to indicate that there are no further candidates”. This currently has the correct type in...