export interface IResponse<T> {
    readonly result: Promise<T>;
    cancel(): Promise<any>;
    retry(): Promise<T>;
}
