Skip to content

Instantly share code, notes, and snippets.

@vkurchatkin
Last active January 10, 2017 11:49
Show Gist options
  • Save vkurchatkin/00109aa9ac3f62af27400be88c7b8a9c to your computer and use it in GitHub Desktop.
Save vkurchatkin/00109aa9ac3f62af27400be88c7b8a9c to your computer and use it in GitHub Desktop.
type Animal =
| { t: 'Cat' }
| { t: 'Dog' }
;
function addADog(arr: Array<Animal>) {
arr.push({ t: 'Dog' });
}
const cats: Array<{ t: 'Cat' }>= [];
addADog(cats);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment