UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

15 lines 560 B
import { ExpressionNode } from "../../common-types"; import { AccessHandlerFn } from "../BaseHandler"; /** * Specialized node type for fight_remains access */ interface FightRemainsExpressionNode extends ExpressionNode { nodeType: "fight_remains"; } /** * Handler for fight_remains access contexts * This represents the time remaining in the current fight */ declare const handleFightRemains: AccessHandlerFn<FightRemainsExpressionNode>; export { handleFightRemains, type FightRemainsExpressionNode }; //# sourceMappingURL=FightRemainsHandler.d.ts.map