Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

util.Omit

import type { util } from "https://esm.sh/zod@3.25.76/index.d.cts"; 

const { Omit } = util;
type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;

§Type Parameters

§
K extends keyof T
[src]

§Type

§
Pick<T, Exclude<keyof T, K>>
[src]