@decaf-ts/decorator-validation
Version:
simple decorator based validation engine
18 lines (17 loc) • 629 B
TypeScript
/**
* @description Error messages for comparison validators.
* @summary Provides a centralized collection of error message templates for comparison-related validation errors.
* @const COMPARISON_ERROR_MESSAGES
* @memberOf module:decorator-validation
*/
export declare const COMPARISON_ERROR_MESSAGES: {
INVALID_PATH: string;
CONTEXT_NOT_OBJECT_COMPARISON: string;
PROPERTY_INVALID: string;
PROPERTY_NOT_EXIST: string;
UNSUPPORTED_TYPES_COMPARISON: string;
NULL_OR_UNDEFINED_COMPARISON: string;
INVALID_DATE_COMPARISON: string;
TYPE_MISMATCH_COMPARISON: string;
NAN_COMPARISON: string;
};