Skip to content

Type Alias: ExecutionValueDto

@kortexya/reasoninglayer


@kortexya/reasoninglayer / Execution / ExecutionValueDto

Type Alias: ExecutionValueDto

ExecutionValueDto = { type: "integer"; value: number; } | { type: "real"; value: number; } | { type: "string"; value: string; } | { type: "boolean"; value: boolean; } | { type: "uninstantiated"; }

Defined in: src/types/execution.ts:38

Value types for execution.

Remarks

Tagged union discriminated by type. Uses lowercase discriminators (unlike ValueDto which uses PascalCase).