Skip to main content
Module

x/dnx/ValuePick.d.ts>default

Fluent modular JavaScript utility library.
Latest
type alias default
import { type default } from "https://deno.land/x/dnx@0.0.5/ValuePick.d.ts";

From T, pick a set of properties whose values are in the union V

definition: Pick<T, [K in keyof T]: T[K] extends V ? K : never[keyof T]>