Clears all reading history from storage.
export function clearReadingHistory(): void { try { storage.removeItem(STORAGE_KEYS.READING_HISTORY); console.info("[Storage] Cleared reading history"); } catch (error) { console.error("[Storage] Failed to clear reading history:", error); }} Copy
export function clearReadingHistory(): void { try { storage.removeItem(STORAGE_KEYS.READING_HISTORY); console.info("[Storage] Cleared reading history"); } catch (error) { console.error("[Storage] Failed to clear reading history:", error); }}
Clears all reading history from storage.