Interface INetworkRequest<T>

interface INetworkRequest<T> {
    abort: (reason: string) => void;
    configuration: NetworkConfiguration;
    done: Promise<T>;
    id: string;
    isAborted: boolean;
    requestType: RequestType;
}

Type Parameters

  • T

Properties

abort: (reason: string) => void
configuration: NetworkConfiguration
done: Promise<T>
id: string
isAborted: boolean
requestType: RequestType