Cache entry structure for any manga source. Stores cached data with timestamp and source information.
export interface MangaSourceCacheEntry<T = unknown> { /** Cached data */ data: T; /** Timestamp when cached */ timestamp: number; /** Source this cache entry belongs to */ source: MangaSource;} Copy
export interface MangaSourceCacheEntry<T = unknown> { /** Cached data */ data: T; /** Timestamp when cached */ timestamp: number; /** Source this cache entry belongs to */ source: MangaSource;}
The type of cached data.
Cached data
Timestamp when cached
Source this cache entry belongs to
Cache entry structure for any manga source. Stores cached data with timestamp and source information.
Source