版博士V2.0程序
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

IMessageEventInit.d.ts 325 B

12345678910
  1. import IEventInit from '../IEventInit';
  2. import IWindow from '../../window/IWindow';
  3. import IMessagePort from '../IMessagePort';
  4. export default interface IMessageEventInit extends IEventInit {
  5. data?: unknown | null;
  6. origin?: string;
  7. lastEventId?: string;
  8. source?: IWindow | null;
  9. ports?: IMessagePort[];
  10. }