@types/audioworklet 0.0.36 → 0.0.38
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 +16 -1
- 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.38 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.38.
|
package/index.d.ts
CHANGED
|
@@ -241,6 +241,14 @@ declare var ByteLengthQueuingStrategy: {
|
|
|
241
241
|
new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
|
|
242
242
|
};
|
|
243
243
|
|
|
244
|
+
interface CompressionStream extends GenericTransformStream {
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
declare var CompressionStream: {
|
|
248
|
+
prototype: CompressionStream;
|
|
249
|
+
new(format: string): CompressionStream;
|
|
250
|
+
};
|
|
251
|
+
|
|
244
252
|
/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
|
|
245
253
|
interface CountQueuingStrategy extends QueuingStrategy {
|
|
246
254
|
readonly highWaterMark: number;
|
|
@@ -327,6 +335,14 @@ declare var DOMException: {
|
|
|
327
335
|
readonly DATA_CLONE_ERR: 25;
|
|
328
336
|
};
|
|
329
337
|
|
|
338
|
+
interface DecompressionStream extends GenericTransformStream {
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
declare var DecompressionStream: {
|
|
342
|
+
prototype: DecompressionStream;
|
|
343
|
+
new(format: string): DecompressionStream;
|
|
344
|
+
};
|
|
345
|
+
|
|
330
346
|
/** Events providing information related to errors in scripts or in files. */
|
|
331
347
|
interface ErrorEvent extends Event {
|
|
332
348
|
readonly colno: number;
|
|
@@ -715,7 +731,6 @@ interface URLSearchParams {
|
|
|
715
731
|
declare var URLSearchParams: {
|
|
716
732
|
prototype: URLSearchParams;
|
|
717
733
|
new(init?: string[][] | Record<string, string> | string | URLSearchParams): URLSearchParams;
|
|
718
|
-
toString(): string;
|
|
719
734
|
};
|
|
720
735
|
|
|
721
736
|
/** Available only in secure contexts. */
|