File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type StateView<T> = Readonly<State<T>>
9
9
10
10
export type Primitive = string | number | boolean | bigint
11
11
12
- export type PropValue = Primitive | ( ( e : any ) => void ) | null
12
+ export type PropValue = Primitive | ( ( e : any ) => void ) | null | undefined
13
13
14
14
export type Props = Record < string , PropValue | StateView < PropValue > | ( ( ) => PropValue ) >
15
15
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type StateView<T> = Readonly<State<T>>
9
9
10
10
export type Primitive = string | number | boolean | bigint
11
11
12
- export type PropValue = Primitive | ( ( e : any ) => void ) | null
12
+ export type PropValue = Primitive | ( ( e : any ) => void ) | null | undefined
13
13
14
14
export type Props = Record < string , PropValue | StateView < PropValue > | ( ( ) => PropValue ) >
15
15
You can’t perform that action at this time.
0 commit comments