/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/script_bindings/webidls/WritableStream.webidl
19 строк
586 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 https://mozilla.org/MPL/2.0/. */ // https://streams.spec.whatwg.org/#writablestream [Exposed=*, Transferable] interface WritableStream { [Throws] constructor(optional object underlyingSink, optional QueuingStrategy strategy = {}); readonly attribute boolean locked; Promise<undefined> abort(optional any reason); Promise<undefined> close(); [Throws] WritableStreamDefaultWriter getWriter(); };