Type Alias NetworkInterceptors

NetworkInterceptors: {
    request?: RequestInterceptor;
    response?: ResponseInterceptor;
    responseError?: ResponseErrorInterceptor;
}

Defines the network interceptors. Please check the documentation of RequestInterceptor, ResponseInterceptor and ResponseErrorInterceptor for examples.