• Clears all reading history from storage.

    Returns void

    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);
    }
    }