ravendb
Version:
RavenDB client for Node.js
14 lines • 679 B
TypeScript
import { ICommandData, CommandType } from "../CommandData.js";
import { DocumentConventions } from "../../Conventions/DocumentConventions.js";
export declare class CopyAttachmentCommandData implements ICommandData {
readonly id: string;
readonly changeVector: string;
readonly name: string;
private readonly _destinationId;
private readonly _destinationName;
get type(): CommandType;
constructor(documentId: string, name: string, destinationDocumentId: string, destinationName: string, changeVector: string);
getType(): CommandType;
serialize(conventions: DocumentConventions): object;
}
//# sourceMappingURL=CopyAttachmentCommandData.d.ts.map