export const IMMUTABLE_KEY = Symbol("secret"); export function immutable(target: any, propertyKey: string) { Reflect.defineMetadata(IMMUTABLE_KEY, true, target, propertyKey); }