@cruglobal/js-hcl2 - v0.1.1
    Preparing search index...

    Interface Expression

    Wrapper returned by toValue for any expression that cannot collapse to a plain JS primitive / array / object. Carries both the source text (for display) and the full AST (for structural manipulation).

    interface Expression {
        __hcl: "expression";
        ast: ExprNode;
        kind: ExpressionValueKind;
        source: string;
    }
    Index

    Properties

    Properties

    __hcl: "expression"
    source: string