Skip to content

Commit 505f875

Browse files
ortagithub-actions[bot]
authored andcommitted
🤖 Update core dependencies
1 parent 945a62b commit 505f875

22 files changed

+747
-734
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -345,14 +345,14 @@ declare var ByteLengthQueuingStrategy: {
345345
};
346346

347347
/**
348-
* The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.
348+
* The **`CompressionStream`** interface of the Compression Streams API compresses a stream of data. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
349349
*
350350
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CompressionStream)
351351
*/
352352
interface CompressionStream extends GenericTransformStream {
353-
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream. */
353+
/** The **`readable`** read-only property of the CompressionStream interface returns a ReadableStream that emits compressed data as Uint8Array chunks. */
354354
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
355-
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream. */
355+
/** The **`writable`** read-only property of the CompressionStream interface returns a WritableStream that accepts uncompressed data to be compressed, in the form of ArrayBuffer, TypedArray, or DataView chunks. */
356356
readonly writable: WritableStream<BufferSource>;
357357
}
358358

@@ -491,14 +491,14 @@ declare var DOMException: {
491491
};
492492

493493
/**
494-
* The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.
494+
* The **`DecompressionStream`** interface of the Compression Streams API decompresses a stream of data. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
495495
*
496496
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/DecompressionStream)
497497
*/
498498
interface DecompressionStream extends GenericTransformStream {
499-
/** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream. */
499+
/** The **`readable`** read-only property of the DecompressionStream interface returns a ReadableStream that emits decompressed data as Uint8Array chunks. */
500500
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
501-
/** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream. */
501+
/** The **`writable`** read-only property of the DecompressionStream interface returns a WritableStream that accepts compressed data to be decompressed, in the form of ArrayBuffer, TypedArray, or DataView chunks. */
502502
readonly writable: WritableStream<BufferSource>;
503503
}
504504

@@ -1118,14 +1118,14 @@ interface TextDecoderCommon {
11181118
}
11191119

11201120
/**
1121-
* The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. It is the streaming equivalent of TextDecoder.
1121+
* The **`TextDecoderStream`** interface of the Encoding API converts a stream of text in a binary encoding, such as UTF-8 etc., to a stream of strings. It is the streaming equivalent of TextDecoder. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
11221122
*
11231123
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextDecoderStream)
11241124
*/
11251125
interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon {
1126-
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream. */
1126+
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream that emits decoded strings. */
11271127
readonly readable: ReadableStream<string>;
1128-
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
1128+
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream that accepts binary data, in the form of ArrayBuffer, TypedArray, or DataView chunks (SharedArrayBuffer and its views are also allowed), to be decoded into strings. */
11291129
readonly writable: WritableStream<BufferSource>;
11301130
}
11311131

@@ -1169,14 +1169,14 @@ interface TextEncoderCommon {
11691169
}
11701170

11711171
/**
1172-
* The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder.
1172+
* The **`TextEncoderStream`** interface of the Encoding API converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder. It implements the same shape as a TransformStream, allowing it to be used in ReadableStream.pipeThrough() and similar methods.
11731173
*
11741174
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoderStream)
11751175
*/
11761176
interface TextEncoderStream extends GenericTransformStream, TextEncoderCommon {
1177-
/** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream. */
1177+
/** The **`readable`** read-only property of the TextEncoderStream interface returns a ReadableStream that emits encoded binary data as Uint8Array chunks. */
11781178
readonly readable: ReadableStream<Uint8Array<ArrayBuffer>>;
1179-
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream. */
1179+
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream that accepts strings to be encoded into binary data. */
11801180
readonly writable: WritableStream<string>;
11811181
}
11821182

@@ -1192,13 +1192,13 @@ declare var TextEncoderStream: {
11921192
*/
11931193
interface TransformStream<I = any, O = any> {
11941194
/**
1195-
* The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream.
1195+
* The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream. This stream emits the transformed output data.
11961196
*
11971197
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/readable)
11981198
*/
11991199
readonly readable: ReadableStream<O>;
12001200
/**
1201-
* The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream.
1201+
* The **`writable`** read-only property of the TransformStream interface returns the WritableStream instance controlled by this TransformStream. This stream accepts input data that will be transformed and emitted to the readable stream.
12021202
*
12031203
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/TransformStream/writable)
12041204
*/

0 commit comments

Comments
 (0)