UNPKG

130 BPlain TextView Raw
1/**
2 * A type including all members of T except for K.
3 */
4export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;