Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save omarkdev/e2bceace35b92477e744094e66129c92 to your computer and use it in GitHub Desktop.
Save omarkdev/e2bceace35b92477e744094e66129c92 to your computer and use it in GitHub Desktop.
function analyze(target: any, key: string) {
console.log(target, key);
}
class Task {
@analyze
public title: string;
constructor(title: string) {
this.title = title;
}
}
// Task {} 'title'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment