UNPKG

fluent-ts-validator

Version:
12 lines (11 loc) 324 B
import { PropertyValidator } from "../PropertyValidator"; /** * Validates if a value is not null (!== undefined, !== null). * * @export * @class IsNotNullValidator * @implements {PropertyValidator<any>} */ export declare class IsNotNullValidator implements PropertyValidator<any> { isValid(input: any): boolean; }