mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
3 lines
137 B
TypeScript
3 lines
137 B
TypeScript
export type Unpacked<T> = T extends (infer U)[] ? U : T;
|
|
export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|