Skip to content

Commit

Permalink
Update index.d.ts
Browse files Browse the repository at this point in the history
Fix tslint warnings
  • Loading branch information
Razzwan authored and supasate committed Jan 13, 2019
1 parent ec3c263 commit 76a9b24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.d.ts
Expand Up @@ -42,10 +42,10 @@ declare module 'connected-react-router' {
export function go(n: number): CallHistoryMethodAction;
export function goBack(): CallHistoryMethodAction;
export function goForward(): CallHistoryMethodAction;
export function getAction(state): RouterActionType;
export function getHash(state): string;
export function getLocation(state): Location;
export function getSearch(state): string;
export function getAction(state: LocationState): RouterActionType;
export function getHash(state: LocationState): string;
export function getLocation(state: LocationState): Location;
export function getSearch(state: LocationState): string;

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

0 comments on commit 76a9b24

Please sign in to comment.