Represents a matched manga from any source with AniList information.

export interface MangaMatchResult<T extends BaseMangaEntry = BaseMangaEntry> {
/** The original manga entry from the source */
sourceManga: T;
/** Extracted AniList ID if found */
anilistId?: number;
/** AniList URL if found */
anilistUrl?: string;
/** Source this match came from */
source: MangaSource;
}
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