Example:
const Color = { Red: 'Red', Green: 'Green', Blue: 'Blue',} as const;type Color = PropertyValues<typeof Color>; Copy
const Color = { Red: 'Red', Green: 'Green', Blue: 'Blue',} as const;type Color = PropertyValues<typeof Color>;
Example: