Sha256: 626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1
Contents?: true
Size: 814 Bytes
Versions: 1
Compression:
Stored size: 814 Bytes
Contents
// `AbortSignal` is defined here to prevent a dependency on a particular // implementation like the `abort-controller` package, and to avoid requiring // the `dom` library in `tsconfig.json`. export interface AbortSignal { aborted: boolean; reason: any; addEventListener: (type: "abort", listener: ((this: AbortSignal, event: any) => any), options?: boolean | { capture?: boolean | undefined, once?: boolean | undefined, passive?: boolean | undefined }) => void; removeEventListener: (type: "abort", listener: ((this: AbortSignal, event: any) => any), options?: boolean | { capture?: boolean | undefined }) => void; dispatchEvent: (event: any) => boolean; onabort: null | ((this: AbortSignal, event: any) => any); throwIfAborted(): void; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
waves_lib-0.1.0 | js/node_modules/@types/node-fetch/externals.d.ts |