Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ts_essentials/lib/types.ts>OmitProperties

All basic TypeScript types in one place 🤙
Latest
type alias OmitProperties
import { type OmitProperties } from "https://deno.land/x/ts_essentials@v9.1.2/lib/types.ts";

Omit all properties of given type in object type

definition: Omit<T, PickKeysByValue<T, P>>