summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageChannel.idl
blob: f1dfc346dc77984849bf1a0345a35aa0cd17a0f4 (plain)
1
2
3
4
5
6
7
8
9
10
#import <HTML/MessagePort.idl>

interface MessageChannel {

    constructor();

    readonly attribute MessagePort port1;
    readonly attribute MessagePort port2;

};