Skip to content

Instantly share code, notes, and snippets.

@janjakubnanista
Last active June 25, 2020 15:38
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 janjakubnanista/346877a21954a8b6b466a10a66b51390 to your computer and use it in GitHub Desktop.
Save janjakubnanista/346877a21954a8b6b466a10a66b51390 to your computer and use it in GitHub Desktop.
// Our new error type ↴
type ButtonType = 'primary' | 'secondary' | 'error' | 'link';
// This compiles fine even though we now have a new ButtonType
const buttonTypes: ButtonType[] = ['primary', 'secondary', 'link'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment