@gati-framework/runtime
Version:
Gati runtime execution engine for running handler-based applications
15 lines • 531 B
TypeScript
/**
* @module runtime/diff-engine
* @description Computes differences between snapshots
*/
import type { SnapshotToken } from './types/context.js';
import type { SnapshotDiff } from './types/trace.js';
/**
* Compute difference between two snapshots
*/
export declare function computeDiff(from: SnapshotToken, to: SnapshotToken): SnapshotDiff;
/**
* Apply diff operations to a snapshot
*/
export declare function applyDiff(snapshot: SnapshotToken, diff: SnapshotDiff): SnapshotToken;
//# sourceMappingURL=diff-engine.d.ts.map