0 votes
in Angular by
What is the code for creating a decorator?

1 Answer

0 votes
by
We create a decorator called Dummy:

 function Dummy(target) {

 dummy.log('This decorator is Dummy', target);

 }
...