UNPKG

@vlocode/apex

Version:
10 lines 483 B
import { TerminalNode } from "antlr4ng"; import { TypeArgumentsContext } from "../grammar"; import { ApexTypeRef } from "../types"; import { ApexSyntaxTreeVisitor } from "./syntaxTreeVisitor"; export declare class TypeRefVisitor extends ApexSyntaxTreeVisitor<ApexTypeRef> { constructor(state?: Partial<ApexTypeRef>); visitTypeArguments(ctx: TypeArgumentsContext): ApexTypeRef; visitTerminal(node: TerminalNode): ApexTypeRef; } //# sourceMappingURL=typeRefVisitor.d.ts.map