Kenmei manga data structure for status calculation.
export interface KenmeiMangaData { status: string; updatedAt: string; lastReadAt?: string; title: string; chaptersRead?: number; score?: number;} Copy
export interface KenmeiMangaData { status: string; updatedAt: string; lastReadAt?: string; title: string; chaptersRead?: number; score?: number;}
Reading status in Kenmei.
Last update timestamp.
Optional
Last read timestamp (optional).
Manga title.
Number of chapters read (optional).
User rating (optional).
Kenmei manga data structure for status calculation.
Source