2022-10-07 19:45:09 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/web-messaging.html#messagechannel
|
|
|
|
|
[Exposed=(Window,Worker)]
|
2021-09-19 17:12:31 -03:00
|
|
|
interface MessageChannel {
|
|
|
|
|
|
|
|
|
|
constructor();
|
|
|
|
|
|
|
|
|
|
readonly attribute MessagePort port1;
|
|
|
|
|
readonly attribute MessagePort port2;
|
|
|
|
|
|
|
|
|
|
};
|