interceptors.d.ts 215 B

12345
  1. import Dispatcher from "./dispatcher";
  2. type RedirectInterceptorOpts = { maxRedirections?: number }
  3. export declare function createRedirectInterceptor (opts: RedirectInterceptorOpts): Dispatcher.DispatchInterceptor