Skip to content

Instantly share code, notes, and snippets.

@michaeljscript
Last active April 2, 2019 19:49
Show Gist options
  • Save michaeljscript/32a8fcdf5ea446263948158806cff5cf to your computer and use it in GitHub Desktop.
Save michaeljscript/32a8fcdf5ea446263948158806cff5cf to your computer and use it in GitHub Desktop.
const data: unknown = response.body;
if (isPerson(data)) {
// data is Person
console.log('Welcome ' + data.name);
} else {
console.log('You are not a person!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment