Yann
test
f23825d
raw
history blame
94 Bytes
export type DistributiveOmit<T, K extends keyof any> = T extends any
? Omit<T, K>
: never