Statistics tracking results of a manga import operation (new, updated, total counts).

export interface ImportResults {
newMangaCount: number;
updatedMangaCount: number;
totalManga: number;
}
interface ImportResults {
    newMangaCount: number;
    updatedMangaCount: number;
    totalManga: number;
}

Properties

newMangaCount: number
updatedMangaCount: number
totalManga: number