Result of categorizing manga for batch processing.
export interface BatchCategorizationResult { /** Cached AniList results by index. */ cachedResults: Record<number, AniListManga[]>; /** Cached Comick sources by index. */ cachedComickSources: ComickSourceStorage; /** Cached MangaDex sources by index. */ cachedMangaDexSources: MangaDexSourceStorage; /** Uncached manga requiring title search. */ uncachedManga: { index: number; manga: KenmeiManga }[]; /** Manga with known IDs for batch fetch. */ knownMangaIds: { index: number; id: number }[];} Copy
export interface BatchCategorizationResult { /** Cached AniList results by index. */ cachedResults: Record<number, AniListManga[]>; /** Cached Comick sources by index. */ cachedComickSources: ComickSourceStorage; /** Cached MangaDex sources by index. */ cachedMangaDexSources: MangaDexSourceStorage; /** Uncached manga requiring title search. */ uncachedManga: { index: number; manga: KenmeiManga }[]; /** Manga with known IDs for batch fetch. */ knownMangaIds: { index: number; id: number }[];}
Cached AniList results by index.
Cached Comick sources by index.
Cached MangaDex sources by index.
Uncached manga requiring title search.
Manga with known IDs for batch fetch.
Result of categorizing manga for batch processing.
Source