gvergnaud/type-level-typescript-workshop

ex. 04, wrong order of problems 3 and 4

Opened this issue · 0 comments

The solutions file has them in a different order (apparently, more proper to their difficulties).

namespace three {
type UppercaseFirstWord<word> = TODO;

namespace three {
type EndOfWord<word> = word extends `${infer _}${infer endOfWord}`