Skip to content

Instantly share code, notes, and snippets.

@michaeljscript
Last active April 2, 2019 19:39
Show Gist options
  • Save michaeljscript/17e5287d924a1ff7c11fa1db711a1615 to your computer and use it in GitHub Desktop.
Save michaeljscript/17e5287d924a1ff7c11fa1db711a1615 to your computer and use it in GitHub Desktop.
const data: unknown = response.body;
if (checkType(data, parsePerson)) {
// 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