export const PropertyType = (token?: T, isMap?: boolean) => (target: object, key: string) => { Object.defineProperty(target, `_${key}Type`, { value: { cls: token, isMap: isMap, }, }); };