1 2 3 4 5 6 7 8 9 10
function decorator(target: any, propertyKey: any) { target[propertyKey + "decorated"] = true; } export default class { @decorator method() { return 42; } }