Interface ReadingHistoryEntry

Reading history entry capturing manga progress at a point in time.

export interface ReadingHistoryEntry {
timestamp: number; // Unix timestamp in milliseconds
mangaId: string | number; // Kenmei manga ID
title: string; // Manga title for display
chaptersRead: number; // Chapters read at this timestamp
status: string; // Reading status (reading, completed, etc.)
anilistId?: number; // Optional AniList media ID if matched
}
interface ReadingHistoryEntry {
    timestamp: number;
    mangaId: string | number;
    title: string;
    chaptersRead: number;
    status: string;
    anilistId?: number;
}

Properties

timestamp: number
mangaId: string | number
title: string
chaptersRead: number
status: string
anilistId?: number