diff --git a/packages/validators/index.d.ts b/packages/validators/index.d.ts index cb9f545f..5cce9f7d 100644 --- a/packages/validators/index.d.ts +++ b/packages/validators/index.d.ts @@ -25,13 +25,13 @@ export const maxLength: ( max: number | Ref ) => ValidationRuleWithParams<{ max: number }>; export const maxValue: ( - max: number | Ref | string | Ref + max: number | Ref | string | Ref | Date | Ref ) => ValidationRuleWithParams<{ max: number }>; export const minLength: ( min: number | Ref ) => ValidationRuleWithParams<{ min: number }>; export const minValue: ( - min: number | Ref | string | Ref + min: number | Ref | string | Ref | Date | Ref ) => ValidationRuleWithParams<{ min: number }>; export const not: (validator: ValidationRule) => ValidationRuleWithoutParams; export const numeric: ValidationRuleWithoutParams;