@archastro/sdk
    Preparing search index...

    Interface ExpressionResult

    Schema for the result of evaluating an expression

    interface ExpressionResult {
        output?: Record<string, unknown>[];
        result: unknown;
    }
    Index

    Properties

    Properties

    output?: Record<string, unknown>[]

    Output lines from println calls, each with :line (source line number), :text, and optional :values (JSON-serializable structured data)

    result: unknown

    The evaluated JSON-safe result