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 health access */ interface HealthExpressionNode extends ExpressionNode { field: FieldDefinition; nodeType: "health"; } /** * Handler for health access contexts */ declare const handleHealth: AccessHandlerFn<HealthExpressionNode>; export { handleHealth, type HealthExpressionNode }; //# sourceMappingURL=HealthHandler.d.ts.map