Typescript-如何从类装饰器获取所有带有装饰器的类属性

时间:2020-05-09 15:06:18

标签: typescript typescript-decorator reflect-metadata

我想要一个类装饰器,该装饰器获取具有特定装饰器的所有属性的列表,然后修改该类以添加一些其他属性。例如:

@CheckForPropertyThings
export class FoorBar {
  @PropertyThing hello: string;
}

在此示例中,我想使用PropertyThing装饰器检查类的所有属性,然后修改该类以添加某些属性。这可能吗?

0 个答案:

没有答案