24 lines
743 B
TypeScript
24 lines
743 B
TypeScript
|
|
import BrowserWindow from '../../window/BrowserWindow.js';
|
||
|
|
import Event from '../Event.js';
|
||
|
|
import MessagePort from '../MessagePort.js';
|
||
|
|
import IMessageEventInit from './IMessageEventInit.js';
|
||
|
|
/**
|
||
|
|
* Message event.
|
||
|
|
*
|
||
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/MessageEvent
|
||
|
|
*/
|
||
|
|
export default class MessageEvent extends Event {
|
||
|
|
readonly data: unknown | null;
|
||
|
|
readonly origin: string;
|
||
|
|
readonly lastEventId: string;
|
||
|
|
readonly source: BrowserWindow | null;
|
||
|
|
readonly ports: MessagePort[];
|
||
|
|
/**
|
||
|
|
* Constructor.
|
||
|
|
*
|
||
|
|
* @param type Event type.
|
||
|
|
* @param [eventInit] Event init.
|
||
|
|
*/
|
||
|
|
constructor(type: string, eventInit?: IMessageEventInit | null);
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=MessageEvent.d.ts.map
|