Converts a type A to its string representation if it's a number, otherwise returns A.
A
The type to convert.
type Str = ToString<123>; // "123"type Bool = ToString<boolean>; // boolean Copy
type Str = ToString<123>; // "123"type Bool = ToString<boolean>; // boolean
Converts a type
Ato its string representation if it's a number, otherwise returnsA.