Represents a manga item in Kenmei's data export.

export interface KenmeiMangaItem {
title: string;
status: string;
score?: number;
chapters_read?: number;
volumes_read?: number;
url?: string;
source?: string;
notes?: string;
last_read_at?: string;
created_at?: string;
updated_at?: string;
}
interface KenmeiMangaItem {
    title: string;
    status: string;
    score?: number;
    chapters_read?: number;
    volumes_read?: number;
    url?: string;
    source?: string;
    notes?: string;
    last_read_at?: string;
    created_at?: string;
    updated_at?: string;
}

Properties

title: string

The manga title.

status: string

The reading status (e.g., reading, completed).

score?: number

The user's score for the manga.

chapters_read?: number

The number of chapters read.

volumes_read?: number

The number of volumes read.

url?: string

The source URL for the manga.

source?: string

The source name (e.g., site or app).

notes?: string

Any user notes for the manga.

last_read_at?: string

The last read timestamp.

created_at?: string

The creation timestamp.

updated_at?: string

The last updated timestamp.