11 lines
184 B
TypeScript
Generated
11 lines
184 B
TypeScript
Generated
function decorator(target: any, propertyKey: any) {
|
|
target[propertyKey + "decorated"] = true;
|
|
}
|
|
|
|
export default class DecoratedClass {
|
|
@decorator
|
|
method() {
|
|
return 42;
|
|
}
|
|
}
|