11 lines
396 B
TypeScript
11 lines
396 B
TypeScript
|
|
import IEventInit from '../IEventInit.js';
|
||
|
|
import BrowserWindow from '../../window/BrowserWindow.js';
|
||
|
|
import MessagePort from '../MessagePort.js';
|
||
|
|
export default interface IMessageEventInit extends IEventInit {
|
||
|
|
data?: unknown | null;
|
||
|
|
origin?: string;
|
||
|
|
lastEventId?: string;
|
||
|
|
source?: BrowserWindow | null;
|
||
|
|
ports?: MessagePort[];
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IMessageEventInit.d.ts.map
|