Interface SnapshotFile

Description

On-disk snapshot format (one file per class).

interface SnapshotFile {
    calls: Record<string, SnapshotCallEntry>;
    className: string;
    refs?: Record<string, unknown>;
    version: 1;
}

Properties

calls: Record<string, SnapshotCallEntry>
className: string
refs?: Record<string, unknown>

Serialized property bag for object refs returned from recorded calls.

version: 1