export interface IApiErrorBase { status: number; originatingRequest: { method?: string; url?: string; }; wasCancelled: boolean; response: ErrorResponseData; } export interface ITraceableApiErrorBase extends IApiErrorBase { traceableId: string; }