fluent-ts-validator
Version:
A fluent validator written in TypeScript
12 lines (11 loc) • 299 B
TypeScript
import { PropertyValidator } from "../PropertyValidator";
/**
* Validates if a value is null (=== null).
*
* @export
* @class IsNullValidator
* @implements {PropertyValidator<any>}
*/
export declare class IsNullValidator implements PropertyValidator<any> {
isValid(input: any): boolean;
}