UNPKG

@sociate/sociate-api-sdk

Version:

Javascript client for Sociate AI APIs

14 lines (13 loc) 473 B
import { GetTrends, GetTrendsResponse } from 'types/trends'; import { HttpClient } from '../lib/core/http'; export declare class TrendsAPI { private httpClient; constructor(httpClient: HttpClient); /** * Get Trends * @description Get a list of trending products * @param params - The parameters for the request * @returns The response indicating the success of the operation */ get(params: GetTrends): Promise<GetTrendsResponse>; }