| // 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; |