UNPKG

@gooddata/react-components

Version:
6 lines (5 loc) 176 B
export interface ICancellablePromise { promise: Promise<any>; cancel: () => void; } export declare function getCancellable(promise: Promise<any>): ICancellablePromise;