Interface ErrorInterceptorOptions

interface ErrorInterceptorOptions {
    extractErrorCode?: (error: HttpErrorResponse) => null | string | number;
    filter?: (error: HttpErrorResponse) => boolean[];
}

Properties

extractErrorCode?: (error: HttpErrorResponse) => null | string | number
filter?: (error: HttpErrorResponse) => boolean[]