UNPKG

@trendmoon/api-client

Version:
26 lines 976 B
import { TrendmoonApiClient } from '../api/TrendmoonApiClient.js'; import * as Types from '../types/ResponseAndParams.js'; /** * AlertService handles alert-related operations * Provides methods for retrieving various types of alerts and trending information */ export declare class AlertService { private apiClient; constructor(apiClient: TrendmoonApiClient); /** * Retrieves top alerts for today. * @returns Promise resolving to today's top alerts */ getTopAlertsToday(): Promise<Types.GetTopAlertsTodayResponse>; /** * Retrieves top categories for today. * @returns Promise resolving to today's top categories */ getTopCategoriesToday(): Promise<Types.GetTopCategoriesTodayResponse>; /** * Retrieves top category alerts. * @returns Promise resolving to category-specific alerts */ getTopCategoryAlerts(): Promise<Types.GetTopCategoryAlertsResponse>; } //# sourceMappingURL=AlertService.d.ts.map