langchain.js
    Preparing search index...

    Represents a call expression in LangChain. It has a type property set to 'call_expression', a funcCall property which can be a string or a MemberExpressionType, and an optional args property which is an array of ArgumentsType.

    type CallExpressionType = {
        args?: ArgumentsType[];
        funcCall: string | MemberExpressionType;
        type: "call_expression";
    }
    Index

    Properties

    Properties

    args?: ArgumentsType[]
    funcCall: string | MemberExpressionType
    type: "call_expression"