Intersects a base type with a phantom brand tag. The brand exists only at the type level — zero runtime cost.
type Email = Brand<string, 'Email'>;type UserId = Brand<number, 'UserId'>; Copy
type Email = Brand<string, 'Email'>;type UserId = Brand<number, 'UserId'>;
Intersects a base type with a phantom brand tag. The brand exists only at the type level — zero runtime cost.