Files
bun-src/test/bundler/transpiler/decorator-export-default-class-fixture-anon.ts
T
2026-08-27 21:09:14 +00:00

11 lines
169 B
TypeScript
Generated

function decorator(target: any, propertyKey: any) {
target[propertyKey + "decorated"] = true;
}
export default class {
@decorator
method() {
return 42;
}
}