/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/TransformStreamDefaultController.webidl
15 строк
567 B
Taym Haddadi
Script implement TransformStream and TransformStreamDefaultController (#36739)
08 май 2025, 11:45
Не верифицирован
08 май 2025, 11:45
f3f4cc5
Код
Авторство
О чём код?
/* 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 http://mozilla.org/MPL/2.0/. * * The origin of this IDL file is * https://streams.spec.whatwg.org/#ts-default-controller-class-definition */ [Exposed=*] interface TransformStreamDefaultController { readonly attribute unrestricted double? desiredSize; [Throws] undefined enqueue(optional any chunk); [Throws] undefined error(optional any reason); [Throws] undefined terminate(); };