mirror of
https://github.com/servo/servo.git
synced 2025-10-14 23:40:26 +01:00
21 lines
646 B
Text
21 lines
646 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: Compression Streams (https://wicg.github.io/compression/)
|
|
|
|
interface mixin GenericTransformStream {
|
|
readonly attribute ReadableStream readable;
|
|
readonly attribute WritableStream writable;
|
|
};
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface CompressionStream {
|
|
constructor(DOMString format);
|
|
};
|
|
CompressionStream includes GenericTransformStream;
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface DecompressionStream {
|
|
constructor(DOMString format);
|
|
};
|
|
DecompressionStream includes GenericTransformStream;
|