AST_Function

Defines AST of an Expression Function

TypeScript
export type AST_Function = {
    type: string;
    args: AST_Expression[];
    range?: [number, number];
    metaInfo?: PredicateType;
};
References

AST_Expression