Skip to content

Commit

Permalink
Fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Sep 5, 2022
1 parent 498397b commit 3add5df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/handlers.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import Dispatcher from "./dispatcher";

export declare class RedirectHandler extends Dispatcher{
export declare class RedirectHandler implements Dispatcher.DispatchHandlers{
constructor (dispatch: Dispatcher, maxRedirections: number, opts: Dispatcher.DispatchOptions, handler: Dispatcher.DispatchHandlers)
}

export declare class DecoratorHandler extends Dispatcher{
export declare class DecoratorHandler implements Dispatcher.DispatchHandlers{
constructor (handler: Dispatcher.DispatchHandlers)
}

0 comments on commit 3add5df

Please sign in to comment.