UNPKG

simc-ast-builder

Version:

Parser and AST generator for SimulationCraft files

15 lines 480 B
import { ExpressionNode } from "../../common-types"; import { AccessHandlerFn } from "../BaseHandler"; /** * Specialized node type for time access */ interface TimeExpressionNode extends ExpressionNode { nodeType: "time"; } /** * Handler for time access contexts * This represents the current time in the simulation */ declare const handleTime: AccessHandlerFn<TimeExpressionNode>; export { handleTime, type TimeExpressionNode }; //# sourceMappingURL=TimeHandler.d.ts.map