Skip to content

Commit

Permalink
fix(types): minLength param type
Browse files Browse the repository at this point in the history
  • Loading branch information
Riu authored May 1, 2022
1 parent dc307c9 commit 0d10b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/validators/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const maxValue: (
) => ValidationRuleWithParams<{ max: number }>;
export const minLength: (
min: number | Ref<number>
) => ValidationRuleWithParams<{ length: number }>;
) => ValidationRuleWithParams<{ min: number }>;
export const minValue: (
min: number | Ref<number> | string | Ref<string>
) => ValidationRuleWithParams<{ min: number }>;
Expand Down

0 comments on commit 0d10b26

Please sign in to comment.