Skip to content
Entangle UI v0.13.0

ValueOf

ValueOf<T> = T[keyof T]

Defined in: src/types/utilities.ts:36

Extracts the value type from a record/object

T

type Colors = { red: '#ff0000', blue: '#0000ff' }
type ColorValue = ValueOf<Colors> // '#ff0000' | '#0000ff'