@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
12 lines • 570 B
TypeScript
import { HTTPClient } from '../../../../utils/http';
import { MeetingDocument, QueryMeetingDocumentDTO } from '../types';
export declare class MeetingDocumentsAPI {
private readonly _httpClient;
private readonly _basePath;
constructor(_httpClient: HTTPClient, _basePath: string);
find(query?: QueryMeetingDocumentDTO): Promise<MeetingDocument[]>;
download(documentId: string): Promise<Blob>;
createAttachment(file: File): Promise<MeetingDocument>;
deleteAttachment(documentId: string): Promise<void>;
}
//# sourceMappingURL=documents.d.ts.map