Skip to main content

ValueOf

객체의 모든 속성의 타입을 추출합니다

Signature

type ValueOf<T> = T extends Obj ? T[keyof T] : unknown;

References

Obj

Example

type Example = ValueOf<{ a: number; b: string }>;

// type Example = number | string