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