@tutkli/jikan-ts 2.0.1 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -222,7 +222,7 @@ interface Anime {
|
|
|
222
222
|
approved: boolean;
|
|
223
223
|
titles: JikanResourceTitle[];
|
|
224
224
|
title: string;
|
|
225
|
-
title_english
|
|
225
|
+
title_english?: string;
|
|
226
226
|
title_japanese: string;
|
|
227
227
|
title_synonyms: string[];
|
|
228
228
|
type: AnimeType;
|
|
@@ -316,6 +316,7 @@ interface Manga {
|
|
|
316
316
|
approved: boolean;
|
|
317
317
|
titles: JikanResourceTitle[];
|
|
318
318
|
title: string;
|
|
319
|
+
title_english?: string;
|
|
319
320
|
title_japanese: string;
|
|
320
321
|
title_synonyms?: string[];
|
|
321
322
|
type: MangaType;
|