@tutkli/jikan-ts
Version:
Node.js wrapper for the Jikan API with built-in typings.
19 lines (18 loc) • 436 B
TypeScript
import type { JikanImages } from '../Common';
export interface RecentRecommendation {
mal_id: string;
entry: RecentRecommendationEntry[];
content: string;
date: string;
user: RecentRecommendationUser;
}
export interface RecentRecommendationEntry {
mal_id: number;
url: string;
images: JikanImages;
title: string;
}
export interface RecentRecommendationUser {
url: string;
username: string;
}