TypeScript-DOM-lib-generator icon indicating copy to clipboard operation
TypeScript-DOM-lib-generator copied to clipboard

Tool for generating dom related TypeScript and JavaScript library files

Results 208 TypeScript-DOM-lib-generator issues
Sort by recently updated
recently updated
newest added

**Search Terms** playoutDelayHint, playoutDelay **Suggestion** Add playoutDelayHint to RTPRtcReceiver. The API playoutDelayHint as a member to RTCRtpReceiver was introduced in https://henbos.github.io/webrtc-timing/#dom-rtcrtpreceiver-playoutdelayhint and implemented by Chrome. It was adopted by WebRTC...

GitHub provides [a branch protection rule](https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/types-of-required-status-checks) to prevent breakage like c735618f0180198fca0f33085b3a2aa1d91421b3. >This ensures pull requests targeting a matching branch have been tested with the latest code. This setting will not...

Currently, if you wish to use **WebAssembly**, you need to include `lib.dom.d.ts`, even in cases where that’s incorrect (e.g.: **NodeJS** or **Deno**). The solution would be to move non‑web‑specific[^1] **WebAssembly** ...

Possibly [the spec](https://wicg.github.io/video-rvfc/) is too early for inclusion. For others with the same issue, here are the types I came up with: ```ts interface VideoFrameMetadata { presentationTime: DOMHighResTimeStamp; expectedDisplayTime: DOMHighResTimeStamp;...

```ts document.body.onclick = function() { console.log(this.innerHTML.length); } ``` The code works in a browser and worked in `[email protected]`. But in `[email protected]` it is a compile error: ``` src/a.ts:3:22 - error...

bug

Changes which could affect builds: - https://github.com/microsoft/TSJS-lib-generator/pull/873 Updates the `specs -> .d.ts` for the DOM .d.ts file to take into account more ways to declare something should not exist. Removing...

In: ```typescript let el = document.createElement('p') el.ontransitionend = function(){let r = this} ``` The this value of r is actually el or typeof el, but typescript tells me that r...

Spec: https://w3c.github.io/IndexedDB/#factory-interface Mdn: https://developer.mozilla.org/en-US/docs/Web/API/IDBFactory/databases Shipped: Chrome

- `document.origin` - https://github.com/microsoft/TSJS-lib-generator/pull/840 - this was only available in IE/Safari - [MDN recommends](https://developer.mozilla.org/en-US/docs/Web/API/Document/origin) `self.origin` instead

Hello, I opened https://github.com/microsoft/TypeScript/pull/35211 without realizing that the `lib.dom.d.ts` file was a generated file. I'm copying the PR description here to see if people think it is a good idea....