SnipZard
Search snippets
Home
Portfolio
Contact
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
{
}
Copy Code
Example:
@
Log
class
MyClass
{
}
Copy Code