mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
17 lines
385 B
Text
17 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;
|