diff --git a/types/redux-first-router-link/index.d.ts b/types/redux-first-router-link/index.d.ts index d7b2e7a079..c74bdd530b 100644 --- a/types/redux-first-router-link/index.d.ts +++ b/types/redux-first-router-link/index.d.ts @@ -9,7 +9,7 @@ import { Location } from 'redux-first-router'; export type To = string | string[] | object; -export type OnClick = false | ((e: React.SyntheticEvent) => boolean | undefined); +export type OnClick = false | ((e: React.MouseEvent) => void); export interface Match

{ params: P;