import { type PickOptionals } from "https://deno.land/x/tsafe@v1.6.5/PickOptionals.ts";
PickOptionals<{ p1: string; p2?: string; p3?: number; }> is the type { p2: string; p3: number; }
import { type PickOptionals } from "https://deno.land/x/tsafe@v1.6.5/PickOptionals.ts";
PickOptionals<{ p1: string; p2?: string; p3?: number; }> is the type { p2: string; p3: number; }