typealias _Omit

external
export type _Omit<T, K> = Omit<T, Extract<keyof T, K>>;

Type Parameters

T

K

Omit<T, Extract<keyof T, K>>