Skip to content

Commit

Permalink
add missing semicolon and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
goszczynskip authored and supasate committed Feb 5, 2019
1 parent d240f07 commit 14e7b11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Expand Up @@ -59,8 +59,8 @@ declare module 'connected-react-router' {
export function createMatchSelector<
S extends RouterRootState, Params extends { [K in keyof Params]?: string }
>(path: string): matchSelectorFn<S, Params>;
export function onLocationChange(location: Location, action: RouterActionType, isFirstRendering: boolean = false)
: LocationChangeAction
export function onLocationChanged(location: Location, action: RouterActionType, isFirstRendering: boolean = false)
: LocationChangeAction;

export type Push = typeof push;
export type Replace = typeof replace;
Expand Down

0 comments on commit 14e7b11

Please sign in to comment.