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