Extracts all keys marked as true from a branded type.
true
The branded type to extract keys from
Union of string literal keys that are marked as true
type NonZeroInt = Brand<number, 'integer', 'zero'>;type TrueKeys = UnwrapBrandTrueKeys<NonZeroInt>; // 'integer' Copy
type NonZeroInt = Brand<number, 'integer', 'zero'>;type TrueKeys = UnwrapBrandTrueKeys<NonZeroInt>; // 'integer'
Extracts all keys marked as
truefrom a branded type.