Skip to content

Type Alias: ArithValueDto

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Utilities / ArithValueDto

Type Alias: ArithValueDto

ArithValueDto = { type: "integer"; value: number; } | { type: "real"; value: number; } | { termId: string; type: "term_ref"; }

Defined in: src/types/utilities.ts:168

Arithmetic value (integer, real, or term reference).

Remarks

Tagged union discriminated by type.