interface RawDBRow {
    columns: Record<string, unknown>;
    key: string;
    lastUpdatedTime: Date;
}

Hierarchy (view full)

Properties

columns: Record<string, unknown>

Row data stored as a JSON object.

key: string

Unique row key

lastUpdatedTime: Date

Time when the row was last updated