UNPKG

428 BTypeScriptView Raw
1import { ValidationOptions } from '../ValidationOptions';
2export declare const NOT_EQUALS = "notEquals";
3/**
4 * Checks if value does not match ("!==") the comparison.
5 */
6export declare function notEquals(value: unknown, comparison: unknown): boolean;
7/**
8 * Checks if value does not match ("!==") the comparison.
9 */
10export declare function NotEquals(comparison: any, validationOptions?: ValidationOptions): PropertyDecorator;