Type Alias BrandedType<K, T>

BrandedType<K, T>: K & {
    __brand: T;
}

Crates a strongly typed alias of type K with the brand tag T.

Type Parameters

  • K
  • T