ValuesOf
The object to get the value type of
Get the value type of an object
The value type of the object
type Object = { a: string; b: number };type Value = ValuesOf<Object>; // string | number Copy
type Object = { a: string; b: number };type Value = ValuesOf<Object>; // string | number
ValuesOf