Interface definition for Animal https://medium.com/p/177b4a654ef6
interface Cat { | |
meow(); | |
walk(); | |
} | |
interface Dog { | |
bark(); | |
walk(); | |
} | |
type Animal = Cat | Dog; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment