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

11 lines
184 B
TypeScript
Generated

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