/var/www/qr4y.com/server/delivery/node_modules/abort-controller/dist
NameSizeModeActions
abort-controller.d.ts10200644editdlrm
abort-controller.js36100644editdlrm
abort-controller.js.map63640644editdlrm
abort-controller.mjs33110644editdlrm
abort-controller.mjs.map63120644editdlrm
abort-controller.umd.js92660644editdlrm
abort-controller.umd.js.map373810644editdlrm
Edit: /var/www/qr4y.com/server/delivery/node_modules/abort-controller/dist/abort-controller.d.ts (1020B)
import { EventTarget } from "event-target-shim" type Events = { abort: any } type EventAttributes = { onabort: any } /** * The signal class. * @see https://dom.spec.whatwg.org/#abortsignal */ declare class AbortSignal extends EventTarget { /** * AbortSignal cannot be constructed directly. */ constructor() /** * Returns `true` if this `AbortSignal`"s `AbortController` has signaled to abort, and `false` otherwise. */ readonly aborted: boolean } /** * The AbortController. * @see https://dom.spec.whatwg.org/#abortcontroller */ declare class AbortController { /** * Initialize this controller. */ constructor() /** * Returns the `AbortSignal` object associated with this object. */ readonly signal: AbortSignal /** * Abort and signal to any observers that the associated activity is to be aborted. */ abort(): void } export default AbortController export { AbortController, AbortSignal }