@types/audioworklet 0.0.57 → 0.0.58
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 -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.58 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.58.
|
package/index.d.ts
CHANGED
|
@@ -293,6 +293,8 @@ declare var ByteLengthQueuingStrategy: {
|
|
|
293
293
|
|
|
294
294
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream) */
|
|
295
295
|
interface CompressionStream extends GenericTransformStream {
|
|
296
|
+
readonly readable: ReadableStream<Uint8Array>;
|
|
297
|
+
readonly writable: WritableStream<BufferSource>;
|
|
296
298
|
}
|
|
297
299
|
|
|
298
300
|
declare var CompressionStream: {
|
|
@@ -413,6 +415,8 @@ declare var DOMException: {
|
|
|
413
415
|
|
|
414
416
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream) */
|
|
415
417
|
interface DecompressionStream extends GenericTransformStream {
|
|
418
|
+
readonly readable: ReadableStream<Uint8Array>;
|
|
419
|
+
readonly writable: WritableStream<BufferSource>;
|
|
416
420
|
}
|
|
417
421
|
|
|
418
422
|
declare var DecompressionStream: {
|
|
@@ -788,7 +792,7 @@ interface ReadableStreamBYOBReader extends ReadableStreamGenericReader {
|
|
|
788
792
|
|
|
789
793
|
declare var ReadableStreamBYOBReader: {
|
|
790
794
|
prototype: ReadableStreamBYOBReader;
|
|
791
|
-
new(stream: ReadableStream): ReadableStreamBYOBReader;
|
|
795
|
+
new(stream: ReadableStream<Uint8Array>): ReadableStreamBYOBReader;
|
|
792
796
|
};
|
|
793
797
|
|
|
794
798
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ReadableStreamBYOBRequest) */
|