mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:47:35 +00:00
LibWeb: Add the WritableStream interface
This commit is contained in:
parent
78feba401d
commit
e93560b769
10 changed files with 311 additions and 0 deletions
26
Userland/Libraries/LibWeb/Streams/UnderlyingSink.h
Normal file
26
Userland/Libraries/LibWeb/Streams/UnderlyingSink.h
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Forward.h>
|
||||
#include <LibJS/Forward.h>
|
||||
#include <LibWeb/Forward.h>
|
||||
|
||||
namespace Web::Streams {
|
||||
|
||||
// https://streams.spec.whatwg.org/#dictdef-underlyingsink
|
||||
struct UnderlyingSink {
|
||||
JS::Handle<WebIDL::CallbackType> start;
|
||||
JS::Handle<WebIDL::CallbackType> write;
|
||||
JS::Handle<WebIDL::CallbackType> close;
|
||||
JS::Handle<WebIDL::CallbackType> abort;
|
||||
Optional<JS::Value> type;
|
||||
|
||||
static JS::ThrowCompletionOr<UnderlyingSink> from_value(JS::VM&, JS::Value);
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue