Skip to main content
Module

x/evt/lib/types/index.ts>dom.AbortController

💧EventEmitter's typesafe replacement
Go to Latest
interface dom.AbortController
import { type dom } from "https://deno.land/x/evt@v2.4.13/lib/types/index.ts";
const { AbortController } = dom;

A controller object that allows you to abort one or more DOM requests as and when desired.

Properties

readonly
signal: AbortSignal

Returns the AbortSignal object associated with this object.

Methods

abort(): 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.