Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/mini-van.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type StateView<T> = Readonly<State<T>>

export type Primitive = string | number | boolean | bigint

export type PropValue = Primitive | ((e: any) => void) | null
export type PropValue = Primitive | ((e: any) => void) | null | undefined

export type Props = Record<string, PropValue | StateView<PropValue> | (() => PropValue)>

Expand Down
2 changes: 1 addition & 1 deletion src/van-plate.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export type StateView<T> = Readonly<State<T>>

export type Primitive = string | number | boolean | bigint

export type PropValue = Primitive | ((e: any) => void) | null
export type PropValue = Primitive | ((e: any) => void) | null | undefined

export type Props = Record<string, PropValue | StateView<PropValue> | (() => PropValue)>

Expand Down