Represents an enhanced AniList manga entry that includes source info.
Used when a manga is found via alternative source search and enriched with AniList data.
Source
exportinterfaceEnhancedAniListMangaextendsAniListManga { /** Information about the source where this was found */ sourceInfo?: { /** Original title from the source */ title: string; /** Source slug/identifier */ slug: string; /** Source-specific ID */ sourceId: string; /** Which source this came from */ source: MangaSource; /** Whether this was found via alternative search */ isFoundViaAlternativeSearch: boolean; }; }
Represents an enhanced AniList manga entry that includes source info. Used when a manga is found via alternative source search and enriched with AniList data.
Source