ladybird/Userland/Libraries/LibWeb/HTML/PromiseRejectionEvent.idl
2023-03-05 18:25:59 +00:00

15 lines
373 B
Plaintext

#import <DOM/Event.idl>
[Exposed=(Window,Worker), UseNewAKString]
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;
};