isCat type guard https://medium.com/p/177b4a654ef6
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