mirror of
https://github.com/servo/servo.git
synced 2025-07-03 05:23:38 +01:00
22 lines
548 B
Text
22 lines
548 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Compression Streams (https://wicg.github.io/compression/)
|
|
|
|
enum CompressionFormat {
|
|
"deflate",
|
|
"deflate-raw",
|
|
"gzip",
|
|
};
|
|
|
|
[Exposed=*]
|
|
interface CompressionStream {
|
|
constructor(CompressionFormat format);
|
|
};
|
|
CompressionStream includes GenericTransformStream;
|
|
|
|
[Exposed=*]
|
|
interface DecompressionStream {
|
|
constructor(CompressionFormat format);
|
|
};
|
|
DecompressionStream includes GenericTransformStream;
|