Guest User

Untitled

a guest
Jul 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. export class ManualComponent {
  2. name = 'Component';
  3.  
  4. updateName(newName: string) {
  5. this.name = newName;
  6. }
  7.  
  8. // ...
  9. }
Add Comment
Please, Sign In to add comment