Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/tsafe/PickOptionals.ts

🔩 The missing TypeScript utils
Latest
import * as tsafe from "https://deno.land/x/tsafe@v1.7.2/PickOptionals.ts";

Type Aliases

PickOptionals<{ p1: string; p2?: string; p3?: number; }> is the type { p2: string; p3: number; }