@types/audioworklet 0.0.58 → 0.0.60
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 +5 -5
- package/iterable.d.ts +8 -4
- package/package.json +8 -1
- package/ts5.5/index.d.ts +1427 -0
- package/ts5.5/iterable.d.ts +23 -0
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.60 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.60.
|
package/index.d.ts
CHANGED
|
@@ -1165,7 +1165,7 @@ interface Console {
|
|
|
1165
1165
|
clear(): void;
|
|
1166
1166
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/count_static) */
|
|
1167
1167
|
count(label?: string): void;
|
|
1168
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1168
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/countReset_static) */
|
|
1169
1169
|
countReset(label?: string): void;
|
|
1170
1170
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/debug_static) */
|
|
1171
1171
|
debug(...data: any[]): void;
|
|
@@ -1177,9 +1177,9 @@ interface Console {
|
|
|
1177
1177
|
error(...data: any[]): void;
|
|
1178
1178
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/group_static) */
|
|
1179
1179
|
group(...data: any[]): void;
|
|
1180
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1180
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupCollapsed_static) */
|
|
1181
1181
|
groupCollapsed(...data: any[]): void;
|
|
1182
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1182
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/groupEnd_static) */
|
|
1183
1183
|
groupEnd(): void;
|
|
1184
1184
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/info_static) */
|
|
1185
1185
|
info(...data: any[]): void;
|
|
@@ -1189,9 +1189,9 @@ interface Console {
|
|
|
1189
1189
|
table(tabularData?: any, properties?: string[]): void;
|
|
1190
1190
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/time_static) */
|
|
1191
1191
|
time(label?: string): void;
|
|
1192
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1192
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeEnd_static) */
|
|
1193
1193
|
timeEnd(label?: string): void;
|
|
1194
|
-
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/
|
|
1194
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/timeLog_static) */
|
|
1195
1195
|
timeLog(label?: string, ...data: any[]): void;
|
|
1196
1196
|
timeStamp(label?: string): void;
|
|
1197
1197
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/console/trace_static) */
|
package/iterable.d.ts
CHANGED
|
@@ -12,12 +12,16 @@ interface MessageEvent<T = any> {
|
|
|
12
12
|
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
+
interface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {
|
|
16
|
+
[Symbol.iterator](): URLSearchParamsIterator<T>;
|
|
17
|
+
}
|
|
18
|
+
|
|
15
19
|
interface URLSearchParams {
|
|
16
|
-
[Symbol.iterator]():
|
|
20
|
+
[Symbol.iterator](): URLSearchParamsIterator<[string, string]>;
|
|
17
21
|
/** Returns an array of key, value pairs for every entry in the search params. */
|
|
18
|
-
entries():
|
|
22
|
+
entries(): URLSearchParamsIterator<[string, string]>;
|
|
19
23
|
/** Returns a list of keys in the search params. */
|
|
20
|
-
keys():
|
|
24
|
+
keys(): URLSearchParamsIterator<string>;
|
|
21
25
|
/** Returns a list of values in the search params. */
|
|
22
|
-
values():
|
|
26
|
+
values(): URLSearchParamsIterator<string>;
|
|
23
27
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/audioworklet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.60",
|
|
4
4
|
"description": "Types for the global scope of Audio Worklets",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"contributors": [],
|
|
@@ -10,6 +10,13 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/microsoft/TypeScript-DOM-Lib-Generator.git"
|
|
12
12
|
},
|
|
13
|
+
"typesVersions": {
|
|
14
|
+
"<=5.5": {
|
|
15
|
+
"*": [
|
|
16
|
+
"ts5.5/*"
|
|
17
|
+
]
|
|
18
|
+
}
|
|
19
|
+
},
|
|
13
20
|
"scripts": {},
|
|
14
21
|
"dependencies": {}
|
|
15
22
|
}
|