interface SyncConflict {
    attempts: number;
    localModel: Readonly<Record<string, any>>;
    modelConstructor: PersistentModelConstructor<any>;
    operation: OpType;
    remoteModel: Readonly<Record<string, any>>;
}

Properties

attempts: number
localModel: Readonly<Record<string, any>>
modelConstructor: PersistentModelConstructor<any>
operation: OpType
remoteModel: Readonly<Record<string, any>>