The name of the type that may be returned by !typeof. This is
useful when type manipulation requires a mapping between the return value of !typeof and
their corresponding types.
Example
consta: FromTypeOfName<"boolean">; // a is boolean constb: FromTypeOfname<"string">; // b is string constc: FromTypeOfname<"number" | "undefined">; // c is number | undefined
Get the type from the name returned by
typeof
.