interface ApiReportable {
    onError?: (error: ApiError, depth: number) => void;
    onFailure?: (response: ApiResponse, depth: number) => void;
    onSuccess?: (response: ApiResponse, depth: number) => void;
}

Hierarchy (View Summary)

Properties

onError?: (error: ApiError, depth: number) => void
onFailure?: (response: ApiResponse, depth: number) => void
onSuccess?: (response: ApiResponse, depth: number) => void