add Int64Component

This commit is contained in:
2026-02-12 20:34:32 +00:00
parent 6099538fa8
commit 08682c35c1
7 changed files with 141 additions and 75 deletions

View File

@@ -10,7 +10,7 @@ type ComponentType int8
const (
_ ComponentType = iota
TextComponentType
NumberComponentType
Int64ComponentType
Date
)
@@ -24,4 +24,5 @@ type Component interface {
type ComponentInstance interface {
FromJSON(component Component, data json.RawMessage) error
Value() interface{}
}