UNPKG

fluent-ts-validator

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