mirror of https://github.com/nodejs/node.git
23 lines
550 B
Plaintext
23 lines
550 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: Compression Standard (https://compression.spec.whatwg.org/)
|
|
|
|
enum CompressionFormat {
|
|
"deflate",
|
|
"deflate-raw",
|
|
"gzip",
|
|
};
|
|
|
|
[Exposed=*]
|
|
interface CompressionStream {
|
|
constructor(CompressionFormat format);
|
|
};
|
|
CompressionStream includes GenericTransformStream;
|
|
|
|
[Exposed=*]
|
|
interface DecompressionStream {
|
|
constructor(CompressionFormat format);
|
|
};
|
|
DecompressionStream includes GenericTransformStream;
|