@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
20 lines • 522 B
JavaScript
import { CRUD } from '../../../../utils';
export class TicketingTaskFollowersAPI {
_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(id) {
return this._crud.delete(id);
}
}
//# sourceMappingURL=followers.js.map