Interface VersionChain

interface VersionChain {
    endVersion?: number;
    id: string;
    migration?: SchemaMigration;
    rootCheckpointId?: string;
    schemaVersion: number;
    startVersion: number;
}

Properties

endVersion?: number
id: string
migration?: SchemaMigration
rootCheckpointId?: string
schemaVersion: number
startVersion: number