Spaces:
Running
Running
File size: 94 Bytes
f23825d |
1 2 3 4 |
export type DistributiveOmit<T, K extends keyof any> = T extends any
? Omit<T, K>
: never
|