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
* The **`CompressionStream`** interface of the Compression Streams API is an API for compressing a stream of data.
2668
+
* 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. */
2673
+
/** 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. */
2675
+
/** 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. */
2676
2676
readonly writable: WritableStream<BufferSource>;
2677
2677
}
2678
2678
@@ -3589,14 +3589,14 @@ declare var DOMStringList: {
3589
3589
};
3590
3590
3591
3591
/**
3592
-
* The **`DecompressionStream`** interface of the Compression Streams API is an API for decompressing a stream of data.
3592
+
* 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. */
3597
+
/** 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. */
3599
+
/** 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. */
3600
3600
readonly writable: WritableStream<BufferSource>;
3601
3601
}
3602
3602
@@ -7181,7 +7181,7 @@ interface PushMessageData {
7181
7181
*/
7182
7182
blob(): Blob;
7183
7183
/**
7184
-
* The **`bytes()`** method of the PushMessageData interface extracts push message data as an Uint8Array object.
7184
+
* The **`bytes()`** method of the PushMessageData interface extracts push message data as a Uint8Array object.
* 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.
8673
+
* 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. */
8678
+
/** The **`readable`** read-only property of the TextDecoderStream interface returns a ReadableStream that emits decoded strings. */
8679
8679
readonly readable: ReadableStream<string>;
8680
-
/** The **`writable`** read-only property of the TextDecoderStream interface returns a WritableStream. */
8680
+
/** 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.
8724
+
* 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. */
8729
+
/** 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. */
8731
+
/** The **`writable`** read-only property of the TextEncoderStream interface returns a WritableStream that accepts strings to be encoded into binary data. */
8732
8732
readonly writable: WritableStream<string>;
8733
8733
}
8734
8734
@@ -8829,13 +8829,13 @@ declare var TextMetrics: {
8829
8829
*/
8830
8830
interface TransformStream<I = any, O = any> {
8831
8831
/**
8832
-
* The **`readable`** read-only property of the TransformStream interface returns the ReadableStream instance controlled by this TransformStream.
8832
+
* 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.
8838
+
* 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.
* The **`location`** read-only property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker. It is a specific location object, mostly a subset of the Location for browsing scopes, but adapted to workers.
12315
+
* The read-only **`location`** property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker. It is a specific location object, mostly a subset of the Location for browsing scopes, but adapted to workers.
@@ -13293,7 +13293,7 @@ declare function postMessage(message: any, options?: StructuredSerializeOptions)
13293
13293
*/
13294
13294
declare function dispatchEvent(event: Event): boolean;
13295
13295
/**
13296
-
* The **`location`** read-only property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker. It is a specific location object, mostly a subset of the Location for browsing scopes, but adapted to workers.
13296
+
* The read-only **`location`** property of the WorkerGlobalScope interface returns the WorkerLocation associated with the worker. It is a specific location object, mostly a subset of the Location for browsing scopes, but adapted to workers.
0 commit comments