/**
* @description Symbol key for tracking parent-child relationships in validation
* @summary Symbol used to internally track the parent object during nested validation
*
* @const VALIDATION_PARENT_KEY
* @memberOf module:decorator-validation
*/
export const VALIDATION_PARENT_KEY = Symbol("_parent");
export const ASYNC_META_KEY = Symbol("isAsync");
Source