UNPKG

fluent-ts-validator

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