@tutkli/jikan-ts
Version:
Node.js wrapper for the Jikan API with built-in typings.
22 lines (21 loc) • 492 B
TypeScript
import type { AnimePromoVideo } from '../Anime';
import type { JikanImages } from '../Common';
export type WatchEpisode = {
entry: EpisodeEntry;
episodes: {
mal_id: string;
url: string;
title: string;
premium: boolean;
}[];
region_locked: boolean;
};
export type WatchEpisodePromo = AnimePromoVideo & {
entry: EpisodeEntry;
};
export type EpisodeEntry = {
mal_id: number;
url: string;
images: JikanImages;
title: string;
};