1234567891011121314 |
- #import <DOM/Event.idl>
- [Exposed=(Window,Worker)]
- interface PromiseRejectionEvent : Event {
- constructor(DOMString type, PromiseRejectionEventInit eventInitDict);
- readonly attribute Promise<any> promise;
- readonly attribute any reason;
- };
- dictionary PromiseRejectionEventInit : EventInit {
- required Promise<any> promise;
- any reason;
- };
|