Skip to content

Commit

Permalink
sharping
Browse files Browse the repository at this point in the history
  • Loading branch information
elringus committed Feb 3, 2024
1 parent 59c18b6 commit 5c39c3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ private string ConvertGeneric (Type type)

private string ConvertFinal (Type type)
{
if (type.Name == "Void") return "void";
if (IsVoid(type)) return "void";
if (CrawledTypes.Contains(type)) return BuildJSSpaceFullName(type, prefs);
if (IsNumber(type)) return "number";
return Type.GetTypeCode(type) switch {
Expand Down

0 comments on commit 5c39c3a

Please sign in to comment.