Guest User

Untitled

a guest
Apr 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. interface icar {
  2. getcar(name: string, age: string): void;
  3. }
  4.  
  5. class Car implements icar{
  6.  
  7. getcar() {
  8. console.log('anything');
  9. }
  10.  
  11. }
  12.  
  13. var newCar:any = new Car();
  14. newCar.getcar('name');
Add Comment
Please, Sign In to add comment