Skip to content

Commit 0b3cf7d

Browse files
authored
fix(types): stricter type condition for EventHandlers (#12840)
fix #12832
1 parent a5afc4d commit 0b3cf7d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

types/jsx.d.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1297,7 +1297,9 @@ export interface Events {
12971297
}
12981298

12991299
type EventHandlers<E> = {
1300-
[K in keyof E]?: E[K] extends Function ? E[K] : (payload: E[K]) => void
1300+
[K in keyof E]?: E[K] extends (...args: any) => any
1301+
? E[K]
1302+
: (payload: E[K]) => void
13011303
}
13021304

13031305
type ReservedProps = {

0 commit comments

Comments
 (0)