UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

17 lines 533 B
import { ExpressionNode } from "../../common-types"; import { FieldDefinition } from "../../utils/fieldMaps"; import { AccessHandlerFn } from "../BaseHandler"; /** * Specialized node type for buff access */ interface BuffExpressionNode extends ExpressionNode { buffName: string; field: FieldDefinition; nodeType: "buff"; } /** * Handler for buff access contexts */ declare const handleBuff: AccessHandlerFn<BuffExpressionNode>; export { handleBuff, type BuffExpressionNode }; //# sourceMappingURL=BuffHandler.d.ts.map