Skip to content

Instantly share code, notes, and snippets.

@rarmatei
Last active February 22, 2018 22:03
Show Gist options
  • Save rarmatei/8580abb9822dd9710387b2a9fb8a0833 to your computer and use it in GitHub Desktop.
Save rarmatei/8580abb9822dd9710387b2a9fb8a0833 to your computer and use it in GitHub Desktop.
typescript type guards
class Book {
title: string;
}
class Television {
screenSize: string;
}
function relaxWith(item: Book | Television) {
if(item instanceof Book) {
console.log(item.title);
} else {
console.log(item.screenSize);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment