mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 17:45:08 +00:00
8 lines
199 B
Text
8 lines
199 B
Text
[Exposed=(Window,Worker)]
|
|
interface AbortSignal : EventTarget {
|
|
// FIXME: [NewObject] static AbortSignal abort();
|
|
|
|
readonly attribute boolean aborted;
|
|
|
|
attribute EventHandler onabort;
|
|
};
|