type ParseInt<T> = T extends `${infer N extends number}` ? N : never
Parses a string literal type into a numeric literal type
Parses a string literal type into a numeric literal type