Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. interface Bird {
  2. fly();
  3. }
  4.  
  5. interface Fish {
  6. swim();
  7. }
  8.  
  9. function getSmallPet(): Fish | Bird
  10.  
  11. function getFlyingFish(): Fish & Bird
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement