Decorator

Decorators are functions that can be used to modify the behavior of classes or class members.

Snippet:

function Log(target: any) { console.log(target); } @Log class MyClass {}

Example:

@Log class MyClass {}