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
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;
};