Skip to content

Commit

Permalink
fix(Form.UseData): getValue returns any instead of unknown (#4035)
Browse files Browse the repository at this point in the history
  • Loading branch information
langz authored Sep 30, 2024
1 parent 3ae1529 commit 8434de9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type UseDataReturnUpdate<Data> = <P extends Path>(

export type UseDataReturnGetValue<Data> = <P extends Path>(
path: P
) => PathType<Data, P> | unknown
) => PathType<Data, P> | any

export type UseDataReturnFilterData<Data> = (
filterDataHandler: FilterData,
Expand Down

0 comments on commit 8434de9

Please sign in to comment.