You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: baselines/audioworklet.generated.d.ts
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -345,14 +345,14 @@ declare var ByteLengthQueuingStrategy: {
345
345
};
346
346
347
347
/**
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.
/** 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. */
/** 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. */
356
356
readonlywritable: WritableStream<BufferSource>;
357
357
}
358
358
@@ -491,14 +491,14 @@ declare var DOMException: {
491
491
};
492
492
493
493
/**
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.
/** 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. */
/** 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. */
* 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.
/** 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. */
1127
1127
readonlyreadable: 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. */
* 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.
/** 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. */
/** 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. */
1180
1180
readonlywritable: WritableStream<string>;
1181
1181
}
1182
1182
@@ -1192,13 +1192,13 @@ declare var TextEncoderStream: {
1192
1192
*/
1193
1193
interfaceTransformStream<I=any,O=any>{
1194
1194
/**
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.
* 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.
0 commit comments