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