Represents an AniList match for a manga entry.

export interface AnilistMatch {
id: number;
title: {
english?: string | null;
romaji?: string | null;
native?: string | null;
};
coverImage?: {
medium?: string;
large?: string;
};
description?: string;
status?: string;
matchConfidence?: number;
}
interface AnilistMatch {
    id: number;
    title: {
        english?: null | string;
        romaji?: null | string;
        native?: null | string;
    };
    coverImage?: { medium?: string; large?: string };
    description?: string;
    status?: string;
    matchConfidence?: number;
}

Properties

id: number
title: {
    english?: null | string;
    romaji?: null | string;
    native?: null | string;
}
coverImage?: { medium?: string; large?: string }
description?: string
status?: string
matchConfidence?: number