core3-utils

@wixc3/common on Github

Home > @wixc3/common > ValueOf

ValueOf type

union of all fields of T

Signature:

export type ValueOf<T> = T[keyof T];

Example

ValueOf<Record<string, number>> === number