Represents a manga match result with confidence score.
export interface MangaMatch { coverImage?: | { medium?: string; large?: string; } | string; format?: string; status?: string; chapters?: number; title?: string; id?: number; manga: AniListManga; confidence: number; // Optional source information for matches found via alternative methods comickSource?: { title: string; slug: string; comickId: string; foundViaComick: boolean; };} Copy
export interface MangaMatch { coverImage?: | { medium?: string; large?: string; } | string; format?: string; status?: string; chapters?: number; title?: string; id?: number; manga: AniListManga; confidence: number; // Optional source information for matches found via alternative methods comickSource?: { title: string; slug: string; comickId: string; foundViaComick: boolean; };}
Optional
Represents a manga match result with confidence score.
Source