Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. interface Animal {
  2. id: string;
  3. name: string;
  4. type: 'cat' | 'dog' | 'snake' | 'monkey';
  5. }
  6.  
  7. const dog: Animal = { id: 'dog-id', name: 'Larry', type: 'dog' };
  8.  
  9. if (dog.type === 'dog') {
  10. console.log('Woof woof');
  11. }
Add Comment
Please, Sign In to add comment