UNPKG

fluent-ts-validator

Version:
12 lines (11 loc) 332 B
import { PropertyValidator } from "../PropertyValidator"; /** * Validates if given number is less than zero. * * @export * @class IsNegativeValidator * @implements {PropertyValidator<number>} */ export declare class IsNegativeValidator implements PropertyValidator<number> { isValid(input: number | undefined): boolean; }