mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
#import <DOM/AbortSignal.idl>
|
|
|
|
[Exposed=(Window,Worker)]
|
|
interface AbortController {
|
|
constructor();
|
|
|
|
[SameObject] readonly attribute AbortSignal signal;
|
|
|
|
undefined abort(optional any reason);
|
|
};
|