2023-11-13 22:32:53 +08:00
|
|
|
// GENERATED CONTENT - DO NOT EDIT
|
|
|
|
// Content was automatically extracted by Reffy into webref
|
|
|
|
// (https://github.com/w3c/webref)
|
2024-07-04 20:53:23 +08:00
|
|
|
// Source: Compression Standard (https://compression.spec.whatwg.org/)
|
2023-11-13 22:32:53 +08:00
|
|
|
|
|
|
|
enum CompressionFormat {
|
|
|
|
"deflate",
|
|
|
|
"deflate-raw",
|
|
|
|
"gzip",
|
|
|
|
};
|
|
|
|
|
|
|
|
[Exposed=*]
|
|
|
|
interface CompressionStream {
|
|
|
|
constructor(CompressionFormat format);
|
|
|
|
};
|
|
|
|
CompressionStream includes GenericTransformStream;
|
|
|
|
|
|
|
|
[Exposed=*]
|
|
|
|
interface DecompressionStream {
|
|
|
|
constructor(CompressionFormat format);
|
|
|
|
};
|
|
|
|
DecompressionStream includes GenericTransformStream;
|