fluent-ts-validator
Version:
A fluent validator written in TypeScript
12 lines (11 loc) • 324 B
TypeScript
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;
}