FuncCallExpr🔗 Represents a function call expression. Definition🔗 export interface FuncCallExpr { type: "funcCallExpr"; // Name of the function. function: string; // Arguments. args: promql.Expr[]; } See also🔗 FuncCallExprBuilder