@as-pect/snapshots
Version:
A package for dealing with snapshots
10 lines • 348 B
TypeScript
import { Snapshot } from "./Snapshot.js";
import { SnapshotDiffResult } from "./SnapshotDiffResult.js";
export declare class SnapshotDiff {
left: Snapshot;
right: Snapshot;
results: Map<string, SnapshotDiffResult>;
constructor(left: Snapshot, right: Snapshot);
calculateDiff(): void;
}
//# sourceMappingURL=SnapshotDiff.d.ts.map