interface SyncError<T> {
    cause?: Error;
    errorInfo?: string;
    errorType: ErrorType;
    localModel: T;
    message: string;
    model?: string;
    operation: string;
    process: ProcessName;
    recoverySuggestion?: string;
    remoteModel: T;
}

Type Parameters

Properties

cause?: Error
errorInfo?: string
errorType: ErrorType
localModel: T
message: string
model?: string
operation: string
process: ProcessName
recoverySuggestion?: string
remoteModel: T