UNPKG

@eleva-io/erp-sdk

Version:

SDK oficial para el ERP de Eleva

24 lines 711 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TicketingTaskFollowersAPI = void 0; const utils_1 = require("../../../../utils"); class TicketingTaskFollowersAPI { _httpClient; _baseUrl; _crud; constructor(_httpClient, _baseUrl) { this._httpClient = _httpClient; this._baseUrl = _baseUrl; this._crud = new utils_1.CRUD(this._httpClient, { basePath: this._baseUrl, }); } async create(data) { return this._crud.create(data); } async delete(id) { return this._crud.delete(id); } } exports.TicketingTaskFollowersAPI = TicketingTaskFollowersAPI; //# sourceMappingURL=followers.js.map