Cache entry structure for any manga source.

interface MangaSourceCacheEntry<T = any> {
    data: T;
    timestamp: number;
    source: MangaSource;
}

Type Parameters

  • T = any

Properties

Properties

data: T

Cached data

timestamp: number

Timestamp when cached

source: MangaSource

Source this cache entry belongs to