@devexcelsior/healing-engine-core
Version:
Runtime healing kernel for resilient frontend architectures. Manages recovery flows and smart repair logic.
13 lines (12 loc) • 434 B
TypeScript
export interface HealingSessionInput {
stateSnapshot: Record<string, any>;
signal: string;
context?: Record<string, any>;
}
export interface HealingInstruction {
action: 'ROLLBACK' | 'RETRY' | 'PATCH' | 'ESCALATE' | 'IGNORE';
payload?: Record<string, any>;
reason?: string;
}
export declare function runHealingEngine(input: HealingSessionInput): Promise<HealingInstruction[]>;
export default runHealingEngine;