expr/common-type-names.go

15 lines
299 B
Go
Raw Normal View History

2024-05-01 07:10:11 +02:00
// Copyright (c) 2024 Celestino Amoroso (celestino.amoroso@gmail.com).
// All rights reserved.
// common-type-names.go
package expr
const (
typeBoolean = "boolean"
typeFloat = "decimal"
typeFraction = "fraction"
typeInt = "integer"
typeNumber = "number"
typeString = "string"
2024-05-01 07:10:11 +02:00
)