Skip to content

Instantly share code, notes, and snippets.

@dewey92
Last active October 6, 2018 18:31
Show Gist options
  • Select an option

  • Save dewey92/030ad3ac09830d4a40a6fb080c641dfd to your computer and use it in GitHub Desktop.

Select an option

Save dewey92/030ad3ac09830d4a40a6fb080c641dfd to your computer and use it in GitHub Desktop.
Branding
type Brand<Name, Type> = Type & { _brand: Name };
type Celcius = Brand<'Celcius', number>;
type Fahrenheit = Brand<'Fahrenheit', number>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment