Type alias RequestInterceptor

RequestInterceptor: ((url, method, options) => {
    method: HttpMethod;
    options: RequestOptions;
    url: string;
} | Promise<{
    method: HttpMethod;
    options: RequestOptions;
    url: string;
}>)

Type declaration

Generated using TypeDoc