import { IRoutingStep } from './IRoutingStep'; export interface IRoutingResult { targetEmployeeId: number; targetEmployeeFullName: string; error: string; response: { steps: IRoutingStep[]; logs: string[]; attributes: Record; }; }