bedetheque-scraper
Version:
NodeJS script to scrap the entire database of dbgest.com / bedetheque.com (approx. 260.000+ albums)
15 lines (14 loc) • 369 B
TypeScript
/// <reference types="cheerio" />
export declare class Author {
authorId: number | null;
image: string | null;
name: string;
birthDate: string | null;
deathDate: string | null;
seriesIdScenario: number[];
seriesIdDrawing: number[];
seriesIdBoth: number[];
constructor($: CheerioAPI);
private getSeriesId;
private getImage;
}