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;
}
interface MangaMatch {
    coverImage?: string | { medium?: string; large?: string };
    format?: string;
    status?: string;
    chapters?: number;
    title?: string;
    id?: number;
    manga: AniListManga;
    confidence: number;
}

Properties

coverImage?: string | { medium?: string; large?: string }
format?: string
status?: string
chapters?: number
title?: string
id?: number
confidence: number