Skip to content

Commit

Permalink
PropValue: + undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
btakita committed Oct 30, 2023
1 parent e604426 commit 9eb8d46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 9eb8d46

Please sign in to comment.