export interface BackendError {
    httpStatus: number;
    code: number;
    message: string;
}
export interface ITypedBackendResponse<T> {
    data?: T;
    error?: BackendError;
    rawErrors?: any[];
}
