Skip to content

Instantly share code, notes, and snippets.

@vkurchatkin
Created January 11, 2017 16:20
Show Gist options
  • Save vkurchatkin/8126cff6e9865cc8f578f3870fb33148 to your computer and use it in GitHub Desktop.
Save vkurchatkin/8126cff6e9865cc8f578f3870fb33148 to your computer and use it in GitHub Desktop.
type Animal =
| { t: 'Cat' }
| { t: 'Dog' }
;
function makeSound<T: Animal>(arr: Array<T>) {
arr.forEach(animal => {
if (animal.t === 'Cat') {
console.log('meow');
} else {
console.log('woof');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment