UNPKG

@webnotion-net/typescript-model-validator

Version:

Flexible and extensible library for validating data models in TypeScript

7 lines (6 loc) 217 B
import ConstraintInterface from "./ConstraintInterface"; declare class NotBlank implements ConstraintInterface { validate(data: string | number): boolean; getErrorMessage(): string; } export default NotBlank;