Represents a manga item in Kenmei's data export.

export interface KenmeiMangaItem {
title: string;
status: string;
score?: number;
chaptersRead?: number;
volumesRead?: number;
url?: string;
source?: string;
notes?: string;
lastReadAt?: string;
createdAt?: string;
updatedAt?: string;
}
interface KenmeiMangaItem {
    title: string;
    status: string;
    score?: number;
    chaptersRead?: number;
    volumesRead?: number;
    url?: string;
    source?: string;
    notes?: string;
    lastReadAt?: string;
    createdAt?: string;
    updatedAt?: string;
}

Hierarchy (View Summary)

Properties

title: string

The manga title.

status: string

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

score?: number

The user's score for the manga.

chaptersRead?: number

The number of chapters read.

volumesRead?: 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.

lastReadAt?: string

The last read timestamp.

createdAt?: string

The creation timestamp.

updatedAt?: string

The last updated timestamp.