UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

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