Manga search result cache structure. Maps cache keys to entries with manga data, timestamps, and optional alternative source metadata.

export interface MangaCacheSourceMetadata {
comickSources?: Record<string, ComickSourceInfo>;
mangaDexSources?: Record<string, MangaDexSourceInfo>;
}
interface MangaCacheSourceMetadata {
    comickSources?: Record<string, ComickSourceInfo>;
    mangaDexSources?: Record<string, MangaDexSourceInfo>;
}

Properties

comickSources?: Record<string, ComickSourceInfo>
mangaDexSources?: Record<string, MangaDexSourceInfo>