ladybird/Userland/Libraries/LibWeb/DOM/AbortController.idl
2021-12-10 23:05:36 +02:00

8 lines
176 B
Text

[Exposed=(Window,Worker)]
interface AbortController {
constructor();
[SameObject] readonly attribute AbortSignal signal;
undefined abort(optional any reason);
};