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