UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

16 lines 511 B
import { ExpressionNode } from "../../common-types"; import { FieldDefinition } from "../../utils/fieldMaps"; import { AccessHandlerFn } from "../BaseHandler"; /** * Specialized node type for stat access */ interface StatExpressionNode extends ExpressionNode { field: FieldDefinition; nodeType: "stat"; } /** * Handler for stat access contexts */ declare const handleStat: AccessHandlerFn<StatExpressionNode>; export { handleStat, type StatExpressionNode }; //# sourceMappingURL=StatHandler.d.ts.map