// src/rules-engine/actions/escalate.action.ts import type { ActionHandler, ActionResult } from '../types/action.types'; import type { RuleAction } from '../types/rule.types'; export class EscalateActionHandler implements ActionHandler { type = 'escalate'; async execute(_action: RuleAction, _context: Record): Promise { return { success: true, data: { stub: true, action: 'escalate' } }; } }