import { AttachmentResult } from "../Attachments"; import { IAttachmentsSessionOperationsBase } from "./IAttachmentsSessionOperationsBase"; export interface IAttachmentsSessionOperations extends IAttachmentsSessionOperationsBase { exists(documentId: string, name: string): Promise; get(documentId: string, name: string): Promise; get(entity: object, name: string): Promise; getRevision(documentId: string, name: string, changeVector: string): Promise; }