UNPKG

@studiohyperdrive/ngx-forms

Version:
15 lines (14 loc) 339 B
import { ValidatorFn } from '@angular/forms'; /** * WordCountValidator * * The WordCountValidator validator will check the amount of words provided in a control. * * @param .min * @param .max * @returns ValidatorFn */ export declare const WordCountValidator: ({ min, max }: { min?: number; max?: number; }) => ValidatorFn;