mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-11 22:37:31 +08:00
[redux-first-router-link] Fix the type of OnClick
This commit is contained in:
2
types/redux-first-router-link/index.d.ts
vendored
2
types/redux-first-router-link/index.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user