summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageChannel.idl
blob: 22cd3cb5a2eb71c12f6048d5a18ad965e3a2bc1b (plain)
1
2
3
4
5
6
7
8
interface MessageChannel {

    constructor();

    readonly attribute MessagePort port1;
    readonly attribute MessagePort port2;

};