mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 04:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			265 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			265 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| #import <DOM/AbortSignal.idl>
 | |
| 
 | |
| // https://dom.spec.whatwg.org/#interface-abortcontroller
 | |
| [Exposed=(Window,Worker)]
 | |
| interface AbortController {
 | |
|     constructor();
 | |
| 
 | |
|     [SameObject] readonly attribute AbortSignal signal;
 | |
| 
 | |
|     undefined abort(optional any reason);
 | |
| };
 | 
