@configurator/ravendb
Version:
RavenDB client for Node.js
11 lines (10 loc) • 427 B
TypeScript
import { ICommandData, CommandType } from "../CommandData";
import { DocumentConventions } from "../../Conventions/DocumentConventions";
export declare class DeleteAttachmentCommandData implements ICommandData {
id: string;
name: string;
changeVector: string;
type: CommandType;
constructor(documentId: string, name: string, changeVector: string);
serialize(conventions: DocumentConventions): object;
}