@types/web 0.0.128 → 0.0.129

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +3 -3
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -47,4 +47,4 @@ Prior to `@types/web` the web APIs were deployed with a version of TypeScript, a
47
47
 
48
48
  ## Deploy Metadata
49
49
 
50
- You can read what changed in version 0.0.128 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.128.
50
+ You can read what changed in version 0.0.129 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Fweb%400.0.129.
package/index.d.ts CHANGED
@@ -16742,7 +16742,7 @@ declare var OscillatorNode: {
16742
16742
  };
16743
16743
 
16744
16744
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError) */
16745
- interface OverconstrainedError extends Error {
16745
+ interface OverconstrainedError extends DOMException {
16746
16746
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint) */
16747
16747
  readonly constraint: string;
16748
16748
  }
@@ -18155,7 +18155,7 @@ interface RTCPeerConnectionEventMap {
18155
18155
  "connectionstatechange": Event;
18156
18156
  "datachannel": RTCDataChannelEvent;
18157
18157
  "icecandidate": RTCPeerConnectionIceEvent;
18158
- "icecandidateerror": Event;
18158
+ "icecandidateerror": RTCPeerConnectionIceErrorEvent;
18159
18159
  "iceconnectionstatechange": Event;
18160
18160
  "icegatheringstatechange": Event;
18161
18161
  "negotiationneeded": Event;
@@ -18190,7 +18190,7 @@ interface RTCPeerConnection extends EventTarget {
18190
18190
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidate_event) */
18191
18191
  onicecandidate: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceEvent) => any) | null;
18192
18192
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icecandidateerror_event) */
18193
- onicecandidateerror: ((this: RTCPeerConnection, ev: Event) => any) | null;
18193
+ onicecandidateerror: ((this: RTCPeerConnection, ev: RTCPeerConnectionIceErrorEvent) => any) | null;
18194
18194
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/iceconnectionstatechange_event) */
18195
18195
  oniceconnectionstatechange: ((this: RTCPeerConnection, ev: Event) => any) | null;
18196
18196
  /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/RTCPeerConnection/icegatheringstatechange_event) */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/web",
3
- "version": "0.0.128",
3
+ "version": "0.0.129",
4
4
  "description": "Types for the DOM, and other web technologies in browsers",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],