mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 04:14:16 +00:00
15 lines
357 B
Text
15 lines
357 B
Text
|
|
#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;
|
||
|
|
};
|