Container for cached AniList results and source information.

export interface CachedResultsStorage {
/** AniList search results indexed by manga position. */
cachedResults: Record<number, AniListManga[]>;
/** Comick sources indexed by position. */
cachedComickSources: ComickSourceStorage;
/** MangaDex sources indexed by position. */
cachedMangaDexSources: MangaDexSourceStorage;
/** Tracks manga indices whose results came from fallback sources. */
cachedFallbackIndices: Set<number>;
}
interface CachedResultsStorage {
    cachedResults: Record<number, AniListManga[]>;
    cachedComickSources: ComickSourceStorage;
    cachedMangaDexSources: MangaDexSourceStorage;
    cachedFallbackIndices: Set<number>;
}

Properties

cachedResults: Record<number, AniListManga[]>

AniList search results indexed by manga position.

cachedComickSources: ComickSourceStorage

Comick sources indexed by position.

cachedMangaDexSources: MangaDexSourceStorage

MangaDex sources indexed by position.

cachedFallbackIndices: Set<number>

Tracks manga indices whose results came from fallback sources.