@types/audioworklet 0.0.40 → 0.0.41
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 +3 -2
- 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.41 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.41.
|
package/index.d.ts
CHANGED
|
@@ -284,7 +284,7 @@ interface CompressionStream extends GenericTransformStream {
|
|
|
284
284
|
|
|
285
285
|
declare var CompressionStream: {
|
|
286
286
|
prototype: CompressionStream;
|
|
287
|
-
new(format:
|
|
287
|
+
new(format: CompressionFormat): CompressionStream;
|
|
288
288
|
};
|
|
289
289
|
|
|
290
290
|
/**
|
|
@@ -404,7 +404,7 @@ interface DecompressionStream extends GenericTransformStream {
|
|
|
404
404
|
|
|
405
405
|
declare var DecompressionStream: {
|
|
406
406
|
prototype: DecompressionStream;
|
|
407
|
-
new(format:
|
|
407
|
+
new(format: CompressionFormat): DecompressionStream;
|
|
408
408
|
};
|
|
409
409
|
|
|
410
410
|
/**
|
|
@@ -1395,5 +1395,6 @@ type ReadableStreamController<T> = ReadableStreamDefaultController<T> | Readable
|
|
|
1395
1395
|
type ReadableStreamReadResult<T> = ReadableStreamReadValueResult<T> | ReadableStreamReadDoneResult<T>;
|
|
1396
1396
|
type ReadableStreamReader<T> = ReadableStreamDefaultReader<T> | ReadableStreamBYOBReader;
|
|
1397
1397
|
type Transferable = MessagePort | ReadableStream | WritableStream | TransformStream | ArrayBuffer;
|
|
1398
|
+
type CompressionFormat = "deflate" | "deflate-raw" | "gzip";
|
|
1398
1399
|
type ReadableStreamReaderMode = "byob";
|
|
1399
1400
|
type ReadableStreamType = "bytes";
|