标签: typescript
是否有可能实现以下目标?
foo () { @decorator return () => { } }
答案 0 :(得分:0)
不,你不能装饰表达。
但是包装返回的函数会做你想要的
foo () { return decorator(() => { }); }