UNPKG

electron-builder-http

Version:

Part of [electron-builder](https://github.com/electron-userland/electron-builder).

19 lines (18 loc) 680 B
/// <reference types="node" /> import { EventEmitter } from "events"; export declare class CancellationToken extends EventEmitter { private parentCancelHandler; private _cancelled; readonly cancelled: boolean; private _parent; parent: CancellationToken; constructor(parent?: CancellationToken); cancel(): void; private onCancel(handler); createPromise<R>(callback: (resolve: (thenableOrResult?: R) => void, reject: (error?: Error) => void, onCancel: (callback: () => void) => void) => void): Promise<R>; private removeParentCancelHandler(); dispose(): void; } export declare class CancellationError extends Error { constructor(); }