mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-08 08:39:59 +00:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
declare type Nullable<T> = T | null;
|
|
|
|
declare type DistributiveOmit<T, K extends keyof any> = T extends any
|
|
? Omit<T, K>
|
|
: never;
|