@types/audioworklet 0.0.56 → 0.0.57
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 +1 -1
- package/index.d.ts +8 -19
- package/iterable.d.ts +1 -5
- package/package.json +1 -1
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.
|
|
31
|
+
You can read what changed in version 0.0.57 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.57.
|
package/index.d.ts
CHANGED
|
@@ -426,15 +426,10 @@ declare var DecompressionStream: {
|
|
|
426
426
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent)
|
|
427
427
|
*/
|
|
428
428
|
interface ErrorEvent extends Event {
|
|
429
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/colno) */
|
|
430
429
|
readonly colno: number;
|
|
431
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/error) */
|
|
432
430
|
readonly error: any;
|
|
433
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/filename) */
|
|
434
431
|
readonly filename: string;
|
|
435
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/lineno) */
|
|
436
432
|
readonly lineno: number;
|
|
437
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ErrorEvent/message) */
|
|
438
433
|
readonly message: string;
|
|
439
434
|
}
|
|
440
435
|
|
|
@@ -666,11 +661,7 @@ interface MessageEvent<T = any> extends Event {
|
|
|
666
661
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/source)
|
|
667
662
|
*/
|
|
668
663
|
readonly source: MessageEventSource | null;
|
|
669
|
-
/**
|
|
670
|
-
* @deprecated
|
|
671
|
-
*
|
|
672
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
|
|
673
|
-
*/
|
|
664
|
+
/** @deprecated */
|
|
674
665
|
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
|
|
675
666
|
}
|
|
676
667
|
|
|
@@ -1027,9 +1018,9 @@ declare var URL: {
|
|
|
1027
1018
|
prototype: URL;
|
|
1028
1019
|
new(url: string | URL, base?: string | URL): URL;
|
|
1029
1020
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/canParse_static) */
|
|
1030
|
-
canParse(url: string | URL, base?: string): boolean;
|
|
1021
|
+
canParse(url: string | URL, base?: string | URL): boolean;
|
|
1031
1022
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
|
|
1032
|
-
parse(url: string | URL, base?: string): URL | null;
|
|
1023
|
+
parse(url: string | URL, base?: string | URL): URL | null;
|
|
1033
1024
|
};
|
|
1034
1025
|
|
|
1035
1026
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams) */
|
|
@@ -1170,7 +1161,7 @@ interface Console {
|
|
|
1170
1161
|
clear(): void;
|
|
1171
1162
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
1172
1163
|
count(label?: string): void;
|
|
1173
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1164
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static) */
|
|
1174
1165
|
countReset(label?: string): void;
|
|
1175
1166
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
1176
1167
|
debug(...data: any[]): void;
|
|
@@ -1182,9 +1173,9 @@ interface Console {
|
|
|
1182
1173
|
error(...data: any[]): void;
|
|
1183
1174
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
1184
1175
|
group(...data: any[]): void;
|
|
1185
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1176
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static) */
|
|
1186
1177
|
groupCollapsed(...data: any[]): void;
|
|
1187
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1178
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static) */
|
|
1188
1179
|
groupEnd(): void;
|
|
1189
1180
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
1190
1181
|
info(...data: any[]): void;
|
|
@@ -1194,9 +1185,9 @@ interface Console {
|
|
|
1194
1185
|
table(tabularData?: any, properties?: string[]): void;
|
|
1195
1186
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
1196
1187
|
time(label?: string): void;
|
|
1197
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1188
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static) */
|
|
1198
1189
|
timeEnd(label?: string): void;
|
|
1199
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1190
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static) */
|
|
1200
1191
|
timeLog(label?: string, ...data: any[]): void;
|
|
1201
1192
|
timeStamp(label?: string): void;
|
|
1202
1193
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
@@ -1219,9 +1210,7 @@ declare namespace WebAssembly {
|
|
|
1219
1210
|
|
|
1220
1211
|
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
|
|
1221
1212
|
interface Global<T extends ValueType = ValueType> {
|
|
1222
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
|
|
1223
1213
|
value: ValueTypeMap[T];
|
|
1224
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
|
|
1225
1214
|
valueOf(): ValueTypeMap[T];
|
|
1226
1215
|
}
|
|
1227
1216
|
|
package/iterable.d.ts
CHANGED
|
@@ -8,11 +8,7 @@ interface AbortSignal {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
interface MessageEvent<T = any> {
|
|
11
|
-
/**
|
|
12
|
-
* @deprecated
|
|
13
|
-
*
|
|
14
|
-
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/MessageEvent/initMessageEvent)
|
|
15
|
-
*/
|
|
11
|
+
/** @deprecated */
|
|
16
12
|
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
|
|
17
13
|
}
|
|
18
14
|
|