Represents a matched manga from any source with AniList info.

interface MangaMatchResult<T extends BaseMangaEntry = BaseMangaEntry> {
    sourceManga: T;
    anilistId?: number;
    anilistUrl?: string;
    source: MangaSource;
}

Type Parameters

Properties

sourceManga: T

The original manga entry from the source

anilistId?: number

Extracted AniList ID if found

anilistUrl?: string

AniList URL if found

source: MangaSource

Source this match came from