ravendb
Version:
RavenDB client for Node.js
15 lines • 836 B
TypeScript
import { RavenCommand, ResponseDisposeHandling } from "../../Http/RavenCommand.js";
import { HttpCache } from "../../Http/HttpCache.js";
import { HttpRequestParameters, HttpResponse } from "../../Primitives/Http.js";
import { ServerNode } from "../../Http/ServerNode.js";
import { Readable } from "node:stream";
export declare class HeadAttachmentCommand extends RavenCommand<string> {
private readonly _documentId;
private readonly _name;
private readonly _changeVector;
get isReadRequest(): boolean;
constructor(documentId: string, name: string, changeVector: string);
createRequest(node: ServerNode): HttpRequestParameters;
processResponse(cache: HttpCache, response: HttpResponse, bodyStream: Readable, url: string): Promise<ResponseDisposeHandling>;
}
//# sourceMappingURL=HeadAttachmentCommand.d.ts.map