LibWeb: Implement TransformStream transfer

This commit is contained in:
Timothy Flynn 2025-05-20 18:05:52 -04:00 committed by Tim Flynn
commit 95fc0a8070
Notes: github-actions[bot] 2025-05-21 10:55:48 +00:00
6 changed files with 231 additions and 18 deletions

View file

@ -51,6 +51,7 @@ enum class TransferType : u8 {
ResizableArrayBuffer = 3,
ReadableStream = 4,
WritableStream = 5,
TransformStream = 6,
};
WebIDL::ExceptionOr<SerializationRecord> structured_serialize(JS::VM& vm, JS::Value);