UNPKG

@tutkli/jikan-ts

Version:

Node.js wrapper for the Jikan API with built-in typings.

13 lines (12 loc) 276 B
import type { JikanImages } from './image.model'; export interface Recommendation { entry: RecommendationEntry; url: string; votes: number; } export interface RecommendationEntry { mal_id: number; url: string; images: JikanImages; title: string; }