mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 14:05:15 +00:00
16 lines
385 B
Text
16 lines
385 B
Text
#import <Streams/GenericTransformStream.idl>
|
|
|
|
// https://compression.spec.whatwg.org/#enumdef-compressionformat
|
|
enum CompressionFormat {
|
|
"deflate",
|
|
"deflate-raw",
|
|
"gzip",
|
|
};
|
|
|
|
// https://compression.spec.whatwg.org/#compressionstream
|
|
[Exposed=*]
|
|
interface CompressionStream {
|
|
constructor(CompressionFormat format);
|
|
};
|
|
|
|
CompressionStream includes GenericTransformStream;
|