interface dom.MessageEvent
implements Event
import { type dom } from "https://deno.land/x/evt@v2.4.16/lib/index.ts";
const { MessageEvent } = dom;
A message received by a target object.
Properties
Returns the origin of the message, for server-sent events and cross-document messaging.
readonly
ports: ReadonlyArray<MessagePort>Returns the MessagePort array sent with the message, for cross-document messaging and channel messaging.
readonly
source: MessageEventSource | nullReturns the WindowProxy of the source window, for cross-document messaging, and the MessagePort being attached, in the connect event fired at SharedWorkerGlobalScope objects.