Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function decoratorName(value: string) { // this is the decorator factory
  2. return function (target) { // this is the decorator
  3. // do something with 'target' and 'value'...
  4. }
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement