ladybird/Userland/Libraries/LibWeb/HTML/MessageChannel.idl
2022-02-16 22:48:32 +03:30

10 lines
168 B
Text

#import <HTML/MessagePort.idl>
interface MessageChannel {
constructor();
readonly attribute MessagePort port1;
readonly attribute MessagePort port2;
};