@trendmoon/api-client
Version:
Official TypeScript client for Trendmoon API
22 lines • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AlertsService = void 0;
class AlertsService {
constructor(apiClient) {
this.apiClient = apiClient;
}
/**
* Retrieves top alerts for today.
*/
async getTopAlertsToday() {
return this.apiClient.getTopAlertsToday();
}
/**
* Retrieves top category alerts.
*/
async getTopCategoryAlerts() {
return this.apiClient.getTopCategoryAlerts();
}
}
exports.AlertsService = AlertsService;
//# sourceMappingURL=AlertsService.js.map