2 lines
56 B
TypeScript
2 lines
56 B
TypeScript
|
declare type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;
|