Interface SyncConflict

Conflict information.

interface SyncConflict {
    table: string;
    id: undefined | string | number;
    local: SyncRecord;
    remote: SyncRecord;
    localTimestamp?: string;
    remoteTimestamp?: string;
}

Properties

table: string

Table name

id: undefined | string | number

Record identifier

local: SyncRecord

Local version

remote: SyncRecord

Remote version

localTimestamp?: string

Local last modified timestamp

remoteTimestamp?: string

Remote last modified timestamp