Used to notify observers when AbortController.abort() is called.
Extends js.node.web.EventTarget. Prefer these Node web externs over the
incomplete Haxe standard library js.html.AbortSignal.
See also:
Static methods
staticany(signals:Array<AbortSignal>):AbortSignal
Returns a new AbortSignal which will be aborted if any of the provided
signals are aborted. Its reason will be set to whichever signal caused the abort.
statictimeout(delay:Float):AbortSignal
Returns a new AbortSignal which will be aborted in delay milliseconds.
Variables
onabort:Null<Event ‑> Void>
An optional callback function that may be set by user code to be notified
when AbortController.abort() has been called.