@types/audioworklet 0.0.93 → 0.0.95

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.
package/README.md CHANGED
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
28
28
 
29
29
  ## Deploy Metadata
30
30
 
31
- You can read what changed in version 0.0.93 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.93.
31
+ You can read what changed in version 0.0.95 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.95.
package/index.d.ts CHANGED
@@ -1576,7 +1576,7 @@ declare namespace WebAssembly {
1576
1576
  *
1577
1577
  * [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1578
1578
  */
1579
- getArg(index: number): any;
1579
+ getArg(exceptionTag: Tag, index: number): any;
1580
1580
  /**
1581
1581
  * The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1582
1582
  *
@@ -2049,7 +2049,7 @@ type ReadableStreamType = "bytes";
2049
2049
 
2050
2050
  interface MessageEvent<T = any> {
2051
2051
  /** @deprecated */
2052
- initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
2052
+ initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
2053
2053
  }
2054
2054
 
2055
2055
  interface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/audioworklet",
3
- "version": "0.0.93",
3
+ "version": "0.0.95",
4
4
  "description": "Types for the global scope of Audio Worklets",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],
package/ts5.5/index.d.ts CHANGED
@@ -1573,7 +1573,7 @@ declare namespace WebAssembly {
1573
1573
  *
1574
1574
  * [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1575
1575
  */
1576
- getArg(index: number): any;
1576
+ getArg(exceptionTag: Tag, index: number): any;
1577
1577
  /**
1578
1578
  * The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1579
1579
  *
package/ts5.6/index.d.ts CHANGED
@@ -1573,7 +1573,7 @@ declare namespace WebAssembly {
1573
1573
  *
1574
1574
  * [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1575
1575
  */
1576
- getArg(index: number): any;
1576
+ getArg(exceptionTag: Tag, index: number): any;
1577
1577
  /**
1578
1578
  * The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1579
1579
  *
package/ts5.9/index.d.ts CHANGED
@@ -1573,7 +1573,7 @@ declare namespace WebAssembly {
1573
1573
  *
1574
1574
  * [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/Reference/JavaScript_interface/Exception/getArg)
1575
1575
  */
1576
- getArg(index: number): any;
1576
+ getArg(exceptionTag: Tag, index: number): any;
1577
1577
  /**
1578
1578
  * The **`is()`** prototype method of the Exception object can be used to test if the Exception matches a given tag.
1579
1579
  *