Type Alias ValueOf<T>Internal

ValueOf: T[keyof T]

Type Parameters

  • T

Creates a type that extracts the values of T.

ValueOf<{ a: string, b: number }>
=> string | number

@internal