UNPKG

@configurator/ravendb

Version:
10 lines (9 loc) 499 B
import { IMaintenanceOperation, OperationResultType } from "../OperationAbstractions"; import { DocumentConventions } from "../../Conventions/DocumentConventions"; import { RavenCommand } from "../../../Http/RavenCommand"; export declare class DeleteAnalyzerOperation implements IMaintenanceOperation<void> { private readonly _analyzerName; constructor(analyzerName: string); get resultType(): OperationResultType; getCommand(conventions: DocumentConventions): RavenCommand<void>; }