Skip to content

Commit

Permalink
Merge branch 'next' of https://github.com/vuelidate/vuelidate into next
Browse files Browse the repository at this point in the history
  • Loading branch information
dobromir-hristov committed May 29, 2022
2 parents b01e5a3 + 0962038 commit 642acba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/validators/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ export const or: <T = unknown>(
...validators: ValidationRule<T>[]
) => ValidationRuleWithoutParams;
export const required: ValidationRuleWithoutParams;
export const requiredIf: (prop: boolean | string | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams;
export const requiredUnless: (prop: boolean | string | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams;
export const requiredIf: (prop: boolean | Ref<boolean> | string | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams;
export const requiredUnless: (prop: boolean | Ref<boolean> | string | (() => boolean | Promise<boolean>)) => ValidationRuleWithoutParams;
export const sameAs: <E = unknown>(
equalTo: E,
equalTo: E | Ref<E>,
otherName?: string
) => ValidationRuleWithParams<{ equalTo: E, otherName: string }>;
export const url: ValidationRuleWithoutParams;
Expand Down

0 comments on commit 642acba

Please sign in to comment.