/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/DecompressionStream.webidl
10 строк
417 B
Kingsley Yung
script: Implement Compression API (#39658)
27 окт 2025, 11:21
Не верифицирован
27 окт 2025, 11:21
e061e5c
Код
Авторство
О чём код?
/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ // https://compression.spec.whatwg.org/#decompressionstream [Exposed=*] interface DecompressionStream { [Throws] constructor(CompressionFormat format); }; DecompressionStream includes GenericTransformStream;