@tutkli/jikan-ts
Version:
Node.js wrapper for the Jikan API with built-in typings.
22 lines (21 loc) • 736 B
TypeScript
import type { AnimeReview, MangaReview, ReviewsParams } from '../models';
import { BaseClient } from './base.client';
/**
* **Reviews Client**
*
* Client used to access the Reviews Endpoints:
*
* See also: [Jikan Documentation](https://docs.api.jikan.moe/)
*/
export declare class ReviewsClient extends BaseClient {
/**
* Get recent anime reviews
* @param params Review parameters
*/
getRecentAnimeReviews(params?: Partial<ReviewsParams>): Promise<import("../models").JikanResponse<AnimeReview[]>>;
/**
* Get recent manga reviews
* @param params Review parameters
*/
getRecentMangaReviews(params?: Partial<ReviewsParams>): Promise<import("../models").JikanResponse<MangaReview[]>>;
}