Skip to content

Instantly share code, notes, and snippets.

@meekg33k
Created January 17, 2020 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meekg33k/4210896589fcd894e6daec70c472b002 to your computer and use it in GitHub Desktop.
Save meekg33k/4210896589fcd894e6daec70c472b002 to your computer and use it in GitHub Desktop.
const isCat = (animal: Animal): animal is Cat => {
//Hey compiler, this animal is a Cat
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment