From 999193e27aedb4a10263ac2fea197ae6827d6160 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Thu, 3 Aug 2023 23:17:57 +0530 Subject: [PATCH] refactor(MostPopularAnime): updated `MostPopularAnime` type --- src/models/anime.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/anime.ts b/src/models/anime.ts index 65c2b54..23adda0 100644 --- a/src/models/anime.ts +++ b/src/models/anime.ts @@ -19,9 +19,9 @@ export interface Top10Anime extends Pick { export type Top10AnimeTimePeriod = "day" | "week" | "month"; -export interface MostPopularAnime extends Pick { +export interface MostPopularAnime + extends Pick { jname: string | null; - otherInfo: string[]; } export interface SpotlightAnime