Manga entry imported from Kenmei.

export interface KenmeiManga {
id: string | number;
title: string;
status: string;
score: number;
chaptersRead: number;
volumesRead: number;
notes: string;
createdAt: string;
updatedAt: string;
lastReadAt?: string;
}
interface KenmeiManga {
    id: string | number;
    title: string;
    status: string;
    score: number;
    chaptersRead: number;
    volumesRead: number;
    notes: string;
    createdAt: string;
    updatedAt: string;
    lastReadAt?: string;
}

Properties

id: string | number
title: string
status: string
score: number
chaptersRead: number
volumesRead: number
notes: string
createdAt: string
updatedAt: string
lastReadAt?: string