UNPKG

bedetheque-scraper

Version:

NodeJS script to scrap the entire database of dbgest.com / bedetheque.com (approx. 260.000+ albums)

14 lines (13 loc) 597 B
import { Serie } from './serie'; import { ProxyType } from './proxy-fetcher'; export declare class Message { static letterDone(letter: string): void; static databaseScraped(): void; static foundFreeProxiesList(proxyList: ProxyType[], timeout: number): void; static foundSeriesFromLetter(seriesUrl: string[], letter: string): void; static retryRequest(url: string): void; static searchingSeriesFromLetter(letter: string): void; static searchingFreeProxiesList(timeout: number): void; static serieAdded(serie: Serie): void; static serieFail(url: string): void; }