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 talent access
*/
interface TalentExpressionNode extends ExpressionNode {
field: FieldDefinition;
nodeType: "talent";
talentName: string;
}
/**
* Handler for talent access contexts
*/
declare const handleTalent: AccessHandlerFn<TalentExpressionNode>;
export { handleTalent, type TalentExpressionNode };
//# sourceMappingURL=TalentHandler.d.ts.map