Represents a match between a Kenmei manga and an AniList manga.

export interface MangaMatch {
kenmei: KenmeiManga;
anilist: {
id: number;
title: {
romaji: string;
english: string | null;
native: string | null;
};
matchConfidence: number;
} | null;
}
interface MangaMatch {
    kenmei: KenmeiManga;
    anilist:
        | null
        | {
            id: number;
            title: { romaji: string; english: null
            | string; native: null | string };
            matchConfidence: number;
        };
}

Properties

Properties

kenmei: KenmeiManga
anilist:
    | null
    | {
        id: number;
        title: { romaji: string; english: null
        | string; native: null | string };
        matchConfidence: number;
    }