/** * To identify functions by package */ export declare const TYPE_ID_PROPERTY_NAME = "__tst_reflect__"; /** * Name of JSDoc comment forcing generic type reflection. */ export declare const REFLECT_DECORATOR = "reflect"; /** * Name of the getType() function */ export declare const GET_TYPE_FNC_NAME = "getType"; /** * Symbol used as key in objects, holding metadata */ export declare const REFLECT_STORE_SYMBOL: unique symbol; /** * Name of the property used to store Type instance on constructors */ export declare const REFLECTED_TYPE_ID = "__reflectedTypeId__";