Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save charlypoly/52f47d25a471229090b31572d89309e6 to your computer and use it in GitHub Desktop.
Save charlypoly/52f47d25a471229090b31572d89309e6 to your computer and use it in GitHub Desktop.
TypeScript type guard definition
function isPremiumUser(user: User): user is PremiumUser {
return user.plan === 'premium'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment