mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
11 lines
251 B
Text
11 lines
251 B
Text
#import <DOM/AbortSignal.idl>
|
|
|
|
// https://dom.spec.whatwg.org/#interface-abortcontroller
|
|
[Exposed=*]
|
|
interface AbortController {
|
|
constructor();
|
|
|
|
[SameObject] readonly attribute AbortSignal signal;
|
|
|
|
undefined abort(optional any reason);
|
|
};
|