import { AbortSignal } from "./AbortSignal";
export class AbortController {
signal = new AbortSignal();
abort() {
this.signal.abort();
}