Extracts the underlying value type from a branded type.
The branded type to extract from
The underlying value type T that was branded
type UserId = Brand<string, 'UserId'>;type UserIdValue = GetBrandValuePart<UserId>; // stringtype Age = Brand<number, 'Age' | 'positive'>;type AgeValue = GetBrandValuePart<Age>; // number Copy
type UserId = Brand<string, 'UserId'>;type UserIdValue = GetBrandValuePart<UserId>; // stringtype Age = Brand<number, 'Age' | 'positive'>;type AgeValue = GetBrandValuePart<Age>; // number
Extracts the underlying value type from a branded type.