Kenmei manga data structure for status calculation.

export interface KenmeiMangaData {
status: string;
updatedAt: string;
lastReadAt?: string;
title: string;
chaptersRead?: number;
score?: number;
}
interface KenmeiMangaData {
    status: string;
    updatedAt: string;
    lastReadAt?: string;
    title: string;
    chaptersRead?: number;
    score?: number;
}

Properties

status: string

Reading status in Kenmei.

updatedAt: string

Last update timestamp.

lastReadAt?: string

Last read timestamp (optional).

title: string

Manga title.

chaptersRead?: number

Number of chapters read (optional).

score?: number

User rating (optional).