UNPKG

ravendb

Version:
14 lines 926 B
import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions.js"; import { UpdateQueueSinkOperationResult } from "./UpdateQueueSinkOperationResult.js"; import { ConnectionString } from "../Etl/ConnectionString.js"; import { QueueSinkConfiguration } from "./QueueSinkConfiguration.js"; import { DocumentConventions } from "../../Conventions/DocumentConventions.js"; import { RavenCommand } from "../../../Http/RavenCommand.js"; export declare class UpdateQueueSinkOperation<T extends ConnectionString> implements IMaintenanceOperation<UpdateQueueSinkOperationResult> { private readonly _taskId; private readonly _configuration; constructor(taskId: number, configuration: QueueSinkConfiguration); getCommand(conventions: DocumentConventions): RavenCommand<UpdateQueueSinkOperationResult>; get resultType(): OperationResultType; } //# sourceMappingURL=UpdateQueueSinkOperation.d.ts.map