import { type PickRequired } from "https://deno.land/x/tsafe@v1.6.5/mod.ts";
PickRequired<{ p1: string; p2?: string; p3?: number; p4: string; }> is the type { p1: string; p4: number; }
definition: Omit<T, keyof PickOptionals<T>>
import { type PickRequired } from "https://deno.land/x/tsafe@v1.6.5/mod.ts";
PickRequired<{ p1: string; p2?: string; p3?: number; p4: string; }> is the type { p1: string; p4: number; }