vlocode-project - v2.4.3
    Preparing search index...

    Type Alias DataMapperFormulaNode

    DataMapperFormulaNode:
        | { type: "literal"; value: unknown }
        | { path: string; type: "variable" }
        | { argument: DataMapperFormulaNode; operator: string; type: "unary" }
        | {
            left: DataMapperFormulaNode;
            operator: string;
            right: DataMapperFormulaNode;
            type: "binary";
        }
        | { args: DataMapperFormulaNode[]; name: string; type: "call" }