1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 09:34:57 +09:00

LibWeb: Add the IDL for the GenericTransformStream mixin

This commit is contained in:
Timothy Flynn 2024-11-15 07:32:57 -05:00 committed by Andreas Kling
parent 5a2260a0bc
commit 35ba7c7e00
Notes: github-actions[bot] 2024-11-17 22:22:14 +00:00
4 changed files with 78 additions and 0 deletions

View file

@ -0,0 +1,7 @@
#import <Streams/ReadableStream.idl>
#import <Streams/WritableStream.idl>
interface mixin GenericTransformStream {
readonly attribute ReadableStream readable;
readonly attribute WritableStream writable;
};