Skip to content

Type Alias: OsfqlValue

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Osfql / OsfqlValue

Type Alias: OsfqlValue

OsfqlValue = { type: "integer"; value: number; } | { type: "float"; value: number; } | { type: "string"; value: string; } | { type: "boolean"; value: boolean; } | { type: "term_ref"; value: string; }

Defined in: src/types/osfql.ts:21

A bound value from OSFQL execution.

Remarks

Uses a tagged discriminated union with type as the discriminant. Represents the possible value types that can appear in OSFQL variable bindings.