simc-ast-builder
Version:
Parser and AST generator for SimulationCraft files
17 lines • 553 B
TypeScript
import { ExpressionNode } from "../../common-types";
import { FieldDefinition } from "../../utils/fieldMaps";
import { AccessHandlerFn } from "../BaseHandler";
/**
* Specialized node type for debuff access
*/
interface DebuffExpressionNode extends ExpressionNode {
debuffName: string;
field: FieldDefinition;
nodeType: "debuff";
}
/**
* Handler for debuff access contexts
*/
declare const handleDebuff: AccessHandlerFn<DebuffExpressionNode>;
export { handleDebuff, type DebuffExpressionNode };
//# sourceMappingURL=DebuffHandler.d.ts.map