@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
20 lines • 528 B
JavaScript
import { CRUD } from '../../../../utils';
export class TicketingTaskResourcesAPI {
_httpClient;
_baseUrl;
_crud;
constructor(_httpClient, _baseUrl) {
this._httpClient = _httpClient;
this._baseUrl = _baseUrl;
this._crud = new CRUD(this._httpClient, {
basePath: this._baseUrl,
});
}
async create(data) {
return this._crud.create(data);
}
async delete(refId) {
return this._crud.delete(refId);
}
}
//# sourceMappingURL=resources.js.map