UNPKG

fluent-ts-validator

Version:
12 lines (11 loc) 299 B
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; }