[redux-first-router-link] Fix the type of OnClick

This commit is contained in:
Tom Crockett
2017-11-28 15:43:56 -08:00
committed by GitHub
parent e9430decb9
commit a0af484a9c

View File

@@ -9,7 +9,7 @@ import { Location } from 'redux-first-router';
export type To = string | string[] | object;
export type OnClick = false | ((e: React.SyntheticEvent<HTMLElement>) => boolean | undefined);
export type OnClick = false | ((e: React.MouseEvent<HTMLElement>) => void);
export interface Match<P> {
params: P;