Added to convertRaw* stuff
Value: [1e-4 to 1e-3]
This commit is contained in:
parent
f05d089524
commit
8b30eb9f05
|
@ -231,6 +231,8 @@ function convertRawToTypescript(
|
||||||
return tag("string", result._0);
|
return tag("string", result._0);
|
||||||
case 7: // EvSymbol
|
case 7: // EvSymbol
|
||||||
return tag("symbol", result._0);
|
return tag("symbol", result._0);
|
||||||
|
case 8: // EvArrayString
|
||||||
|
return tag("arrayString", result._0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -287,6 +289,10 @@ type rescriptExport =
|
||||||
| {
|
| {
|
||||||
TAG: 7; // EvSymbol
|
TAG: 7; // EvSymbol
|
||||||
_0: string;
|
_0: string;
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
TAG: 8; // EvArrayString
|
||||||
|
_0: string[];
|
||||||
};
|
};
|
||||||
|
|
||||||
type rescriptDist =
|
type rescriptDist =
|
||||||
|
|
Loading…
Reference in New Issue
Block a user