Single manga match with confidence and source information.
export interface MangaMatch { /** The matched AniList manga */ manga: AniListManga; /** Confidence score (0-100) */ confidence: number; /** Comick source information if found via Comick */ comickSource?: { title: string; slug: string; comickId: string; isFoundViaComick: boolean; }; /** MangaDex source information if found via MangaDex */ mangaDexSource?: { title: string; slug: string; mangaDexId: string; isFoundViaMangaDex: boolean; }; /** Unified source information */ sourceInfo?: { source: "comick" | "mangadex"; title: string; slug: string; sourceId: string; isFoundViaAlternativeSearch: boolean; };} Copy
export interface MangaMatch { /** The matched AniList manga */ manga: AniListManga; /** Confidence score (0-100) */ confidence: number; /** Comick source information if found via Comick */ comickSource?: { title: string; slug: string; comickId: string; isFoundViaComick: boolean; }; /** MangaDex source information if found via MangaDex */ mangaDexSource?: { title: string; slug: string; mangaDexId: string; isFoundViaMangaDex: boolean; }; /** Unified source information */ sourceInfo?: { source: "comick" | "mangadex"; title: string; slug: string; sourceId: string; isFoundViaAlternativeSearch: boolean; };}
The matched AniList manga
Confidence score (0-100)
Optional
Comick source information if found via Comick
MangaDex source information if found via MangaDex
Unified source information
Single manga match with confidence and source information.
Source