swc/tests/fixture/issue-1160/input/entry.ts
강동윤 2e29d78281
fix: Decorator metadata (#1248)
swc_ecma_transforms:
 - Emit proper typename for `design:type` used with enum. (#1160)
2020-12-04 05:03:26 +09:00

14 lines
159 B
TypeScript

enum MyEnum {
x = "xxx",
y = "yyy"
}
class Xpto {
@Decorator()
value!: MyEnum;
}
function Decorator() {
return function (...args) { };
}