mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
12 lines
265 B
Plaintext
12 lines
265 B
Plaintext
#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);
|
|
};
|