mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
2 lines
57 B
TypeScript
2 lines
57 B
TypeScript
export type Unpacked<T> = T extends (infer U)[] ? U : T;
|