Skip to content

Instantly share code, notes, and snippets.

@zzzarius
Created June 2, 2025 12:41
Show Gist options
  • Save zzzarius/f141b7804594070f5b1563798ba73c08 to your computer and use it in GitHub Desktop.
Save zzzarius/f141b7804594070f5b1563798ba73c08 to your computer and use it in GitHub Desktop.
declare const brand: unique symbol;
type Brand<T, Brand extends string> = T & { [brand]: Brand };
@zzzarius
Copy link
Author

zzzarius commented Jun 2, 2025

type Kilometer = Brand<number, "Kilometer">
type Meter = Brand<number, "Meter">

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment