标签: javascript typescript
是否可以获取类属性以及类装饰器中是否有类型?
也许是反思?
function classDecorator<T extends {new(...args:any[]):{}}>(constructor:T) { return class extends constructor { // this.props.forEach(p => log(p.type) } }