Utility type to obtain a union of the values of a given object. Functions similar to keyof E, except producing the values instead of the keys.
keyof E
The type of the object
This can be used to convert an enum interface produced by typeof Enum into the union type representing its members.
enum
typeof Enum
Utility type to obtain a union of the values of a given object.
Functions similar to
keyof E
, except producing the values instead of the keys.