Reading history storage with entries and metadata.
export interface ReadingHistory { entries: ReadingHistoryEntry[]; lastUpdated: number; // Unix timestamp of last update version: number; // Schema version for future migrations} Copy
export interface ReadingHistory { entries: ReadingHistoryEntry[]; lastUpdated: number; // Unix timestamp of last update version: number; // Schema version for future migrations}
Reading history storage with entries and metadata.
Source