@eleva-io/erp-sdk
Version:
SDK oficial para el ERP de Eleva
12 lines • 352 B
JavaScript
export class CommonAreaReportsAPI {
_httpClient;
_baseUrl;
constructor(_httpClient, _baseUrl) {
this._httpClient = _httpClient;
this._baseUrl = _baseUrl;
}
async reservations(params) {
return this._httpClient.getBinary(`${this._baseUrl}/reservations`, params);
}
}
//# sourceMappingURL=common-area.js.map