common-type-names.go: typeFraction added

This commit is contained in:
Celestino Amoroso 2024-05-01 21:43:42 +02:00
parent cb3d8827fa
commit 8cb048edb0

View File

@ -5,9 +5,10 @@
package expr
const (
typeBoolean = "boolean"
typeFloat = "decimal"
typeInt = "integer"
typeNumber = "number"
typeString = "string"
typeBoolean = "boolean"
typeFloat = "decimal"
typeFraction = "fraction"
typeInt = "integer"
typeNumber = "number"
typeString = "string"
)