Rob's garden / notes / note

Note

Lovely bit of #TypeScript to get me started this morning (not)

undefined

TypeScript source code reading:

type InferUnion = T extends readonly [infer Head, ...infer Tail] ? Infer | InferUnion : never