Given a type T, return a new type that is all the properties of T that are of type ValueType
type Foo = { a: string; b: number; c: string };type Bar = PickByValue<Foo, string>;// Bar is { a: string; c: string } Copy
type Foo = { a: string; b: number; c: string };type Bar = PickByValue<Foo, string>;// Bar is { a: string; c: string }
Generated using TypeDoc
Given a type T, return a new type that is all the properties of T that are of type ValueType