ravendb
Version:
RavenDB client for Node.js
15 lines • 835 B
TypeScript
import { IMaintenanceOperation, OperationResultType } from "./OperationAbstractions.js";
import { OngoingTask } from "./OngoingTasks/OngoingTask.js";
import { OngoingTaskType } from "./OngoingTasks/OngoingTaskType.js";
import { DocumentConventions } from "../Conventions/DocumentConventions.js";
import { RavenCommand } from "../../Http/RavenCommand.js";
export declare class GetOngoingTaskInfoOperation implements IMaintenanceOperation<OngoingTask> {
private readonly _taskName;
private readonly _taskId;
private readonly _type;
constructor(taskId: number, type: OngoingTaskType);
constructor(taskName: string, type: OngoingTaskType);
get resultType(): OperationResultType;
getCommand(conventions: DocumentConventions): RavenCommand<OngoingTask>;
}
//# sourceMappingURL=GetOngoingTaskInfoOperation.d.ts.map