UNPKG

fluent-ts-validator

Version:
7 lines (6 loc) 286 B
import { PropertyValidator } from "../PropertyValidator"; export declare class HasMaxNumberOfElementsValidator implements PropertyValidator<Iterable<any>> { private maxElementCount; constructor(maxElementCount: number); isValid(input: Iterable<any> | undefined): boolean; }