UNPKG

@crawlee/core

Version:

The scalable web crawling and scraping library for JavaScript/Node.js. Enables development of data extraction and web automation jobs (not only) with headless Chrome and Puppeteer.

12 lines (11 loc) 313 B
import { type Log } from '../log'; /** * Abstract class with pre-defined method to connect to the Crawlers class by the "use" crawler method. * @category Crawlers * @ignore */ export declare abstract class CrawlerExtension { name: string; log: Log; getCrawlerOptions(): Record<string, unknown>; }