Guest User

Untitled

a guest
Dec 11th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Service {}
  2.  
  3. function myFirstDecorator(constructor: Function) {
  4. console.log(constructor);
  5. }
  6.  
  7. @myFirstDecorator
  8. class Module {
  9. constructor(private service: Service) {}
  10. }
Add Comment
Please, Sign In to add comment