Open kevinbarabash opened 7 months ago
Right now the following TypeScript
type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>;
is inferred as:
<T, K: keyof t5>(Pick<T, Exclude<keyof T, K>>)
Right now the following TypeScript
is inferred as: