/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/TransformStream.webidl
18 строк
629 B
Josh Matthews
script_bindings: Assert that serializable/transferable types have accurate WebIDL annotations (#38615)
13 авг 2025, 11:36
Не верифицирован
13 авг 2025, 11:36
bd9bb77
Код
Авторство
О чём код?
/* 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-class-definition */ [Exposed=*, Transferable] interface TransformStream { [Throws] constructor(optional object transformer, optional QueuingStrategy writableStrategy = {}, optional QueuingStrategy readableStrategy = {}); readonly attribute ReadableStream readable; readonly attribute WritableStream writable; };