Omit

Create a type that infers the value of a key from an object.

Signature

type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;

Members

This export does not declare public properties or methods in the generated declaration file.