UNPKG

fluent-vuelidate

Version:

A fluent, typescript-first validation library for Vue3

6 lines (5 loc) 273 B
import { FieldValidationResult } from '../types'; export declare const useIsWithinRange: <TModel extends Record<string, any>>(model: TModel, propertyName: string, comparer: { min: number; max: number; }, message?: string | undefined) => FieldValidationResult;