Describes an in-flight batch sync task.

export interface BatchSyncExecution {
taskId: string;
promise: Promise<PreparedSyncOperation[]>;
}
interface BatchSyncExecution {
    taskId: string;
    promise: Promise<PreparedSyncOperation[]>;
}

Properties

Properties

taskId: string
promise: Promise<PreparedSyncOperation[]>