Skip to main content
Module

x/hkts/record.ts>omit

Functional programming tools: option, either, task, state, optics, etc.
Latest
variable omit
import { omit } from "https://deno.land/x/hkts@v0.0.52/record.ts";

type

<A, P extends keyof A>(props: [P, ...Array<P>], a: A) => [K in keyof A]: K extends P ? never : A[K]