Cast a string to a numeric literal type (number or bigint) if possible.
StringToNumeric<'1'> // 1StringToNumeric<'1n'> // 1nStringToNumeric<'-1'> // -1StringToNumeric<'-1n'> // -1n Copy
StringToNumeric<'1'> // 1StringToNumeric<'1n'> // 1nStringToNumeric<'-1'> // -1StringToNumeric<'-1n'> // -1n
Cast a string to a numeric literal type (number or bigint) if possible.