/** * @deprecated Use ApiResponse instead */ export interface IHttpApiOperationResult { data: T; errorMessage: string; success: boolean; responseCode: ApiResponseCodes | number; } export interface ApiResponse { data: T; errorMessage: string; success: boolean; responseCode: ApiResponseCodes | number; } export interface HttpHeaders { [key: string]: string; } export declare enum ApiResponseCodes { Success = 0, UnAuthorized = 1, Exception = 2 }