Type alias AstNode

AstNode: {
    subNodes: AstNode[];
    type: string;
    [key: string]: any;
}

Node in an AQL abstract syntax tree (AST).

Type declaration

  • [key: string]: any
  • subNodes: AstNode[]
  • type: string

Generated using TypeDoc