nx.js
Classes

AbortController

Implements

Constructors

new AbortController()

new AbortController(): AbortController

Returns

AbortController

Properties

PropertyTypeDescription
signalAbortSignalReturns the AbortSignal object associated with this object. MDN Reference

Methods

abort()

abort(reason?): void

Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted.

MDN Reference

Parameters

ParameterType
reason?any

Returns

void

Implementation of

globalThis.AbortController.abort

On this page