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