handlers.d.ts 387 B

123456789
  1. import Dispatcher from "./dispatcher";
  2. export declare class RedirectHandler implements Dispatcher.DispatchHandlers{
  3. constructor (dispatch: Dispatcher, maxRedirections: number, opts: Dispatcher.DispatchOptions, handler: Dispatcher.DispatchHandlers)
  4. }
  5. export declare class DecoratorHandler implements Dispatcher.DispatchHandlers{
  6. constructor (handler: Dispatcher.DispatchHandlers)
  7. }