Represents the Kenmei data export structure.

export interface KenmeiData {
version?: string;
exportedAt?: string;
manga: KenmeiMangaItem[];
}
interface KenmeiData {
    version?: string;
    exportedAt?: string;
    manga: KenmeiMangaItem[];
}

Properties

version?: string

The export version.

exportedAt?: string

The export timestamp.

The array of manga items in the export.