const Ageman = (constructor: Function) => { constructor.prototype.age = 43; } @Ageman class Man {} const man = new Man(); console.log(man['age']);