2024-10-29 14:44:28 -07:00
|
|
|
/**
|
|
|
|
* @category Request params
|
|
|
|
*/
|
2024-08-28 04:43:23 -07:00
|
|
|
interface GetTrends {
|
|
|
|
/** Integer. Maximum number of results to return. */
|
|
|
|
limit?: number;
|
|
|
|
/** Integer. Skip the first n results. */
|
|
|
|
offset?: number;
|
|
|
|
}
|
|
|
|
|
2024-10-29 14:44:28 -07:00
|
|
|
/**
|
|
|
|
* @category Request params
|
|
|
|
*/
|
2024-08-28 04:43:23 -07:00
|
|
|
type GetTrendingTags = GetTrends;
|
2024-10-29 14:44:28 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @category Request params
|
|
|
|
*/
|
2024-08-28 04:43:23 -07:00
|
|
|
type GetTrendingStatuses = GetTrends;
|
2024-10-29 14:44:28 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @category Request params
|
|
|
|
*/
|
2024-08-28 04:43:23 -07:00
|
|
|
type GetTrendingLinks = GetTrends;
|
|
|
|
|
|
|
|
export type {
|
|
|
|
GetTrendingTags,
|
|
|
|
GetTrendingStatuses,
|
|
|
|
GetTrendingLinks,
|
|
|
|
};
|