@tutkli/jikan-ts
Version:
Node.js wrapper for the Jikan API with built-in typings.
22 lines (21 loc) • 823 B
TypeScript
import type { PaginationParams, RecentRecommendation } from '../models';
import { BaseClient } from './base.client';
/**
* **Recommendations Client**
*
* Client used to access the Recommendations Endpoints:
*
* See also: [Jikan Documentation](https://docs.api.jikan.moe/)
*/
export declare class RecommendationsClient extends BaseClient {
/**
* Get recent anime recommendations
* @param params Pagination parameters
*/
getRecentAnimeRecommendations(params?: Partial<PaginationParams>): Promise<import("../models").JikanResponse<RecentRecommendation[]>>;
/**
* Get recent manga recommendations
* @param params Pagination parameters
*/
getRecentMangaRecommendations(params?: Partial<PaginationParams>): Promise<import("../models").JikanResponse<RecentRecommendation[]>>;
}