mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-30 23:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			373 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #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;
 | |
| };
 | 
