UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

15 lines 488 B
import { ExpressionNode } from "../../common-types"; import { AccessHandlerFn } from "../BaseHandler"; /** * Specialized node type for variable access */ interface VariableExpressionNode extends ExpressionNode { nodeType: "variable"; variableName: string; } /** * Handler for variable access contexts */ declare const handleVariable: AccessHandlerFn<VariableExpressionNode>; export { handleVariable, type VariableExpressionNode }; //# sourceMappingURL=VariableHandler.d.ts.map