Extracts only the brand keys part of a branded type (without the underlying value).
The branded type to extract from
Object type containing only the brand keys and their boolean values
type MyBrand = Brand<string, 'validated'>;type KeysPart = GetBrandKeysPart<MyBrand>; // { validated: true } Copy
type MyBrand = Brand<string, 'validated'>;type KeysPart = GetBrandKeysPart<MyBrand>; // { validated: true }
Extracts only the brand keys part of a branded type (without the underlying value).