mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
9 lines
176 B
Plaintext
9 lines
176 B
Plaintext
[Exposed=(Window,Worker)]
|
|
interface AbortController {
|
|
constructor();
|
|
|
|
[SameObject] readonly attribute AbortSignal signal;
|
|
|
|
undefined abort(optional any reason);
|
|
};
|