@types/audioworklet 0.0.55 → 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 +9 -18
- 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,7 +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;
|
|
1022
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URL/parse_static) */
|
|
1023
|
+
parse(url: string | URL, base?: string | URL): URL | null;
|
|
1031
1024
|
};
|
|
1032
1025
|
|
|
1033
1026
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/URLSearchParams) */
|
|
@@ -1168,7 +1161,7 @@ interface Console {
|
|
|
1168
1161
|
clear(): void;
|
|
1169
1162
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
1170
1163
|
count(label?: string): void;
|
|
1171
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1164
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countreset_static) */
|
|
1172
1165
|
countReset(label?: string): void;
|
|
1173
1166
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
1174
1167
|
debug(...data: any[]): void;
|
|
@@ -1180,9 +1173,9 @@ interface Console {
|
|
|
1180
1173
|
error(...data: any[]): void;
|
|
1181
1174
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
1182
1175
|
group(...data: any[]): void;
|
|
1183
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1176
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupcollapsed_static) */
|
|
1184
1177
|
groupCollapsed(...data: any[]): void;
|
|
1185
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1178
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupend_static) */
|
|
1186
1179
|
groupEnd(): void;
|
|
1187
1180
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
1188
1181
|
info(...data: any[]): void;
|
|
@@ -1192,9 +1185,9 @@ interface Console {
|
|
|
1192
1185
|
table(tabularData?: any, properties?: string[]): void;
|
|
1193
1186
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
1194
1187
|
time(label?: string): void;
|
|
1195
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1188
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeend_static) */
|
|
1196
1189
|
timeEnd(label?: string): void;
|
|
1197
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1190
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timelog_static) */
|
|
1198
1191
|
timeLog(label?: string, ...data: any[]): void;
|
|
1199
1192
|
timeStamp(label?: string): void;
|
|
1200
1193
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
|
@@ -1217,9 +1210,7 @@ declare namespace WebAssembly {
|
|
|
1217
1210
|
|
|
1218
1211
|
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global) */
|
|
1219
1212
|
interface Global<T extends ValueType = ValueType> {
|
|
1220
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/value) */
|
|
1221
1213
|
value: ValueTypeMap[T];
|
|
1222
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/WebAssembly/JavaScript_interface/Global/valueOf) */
|
|
1223
1214
|
valueOf(): ValueTypeMap[T];
|
|
1224
1215
|
}
|
|
1225
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
|
|