UNPKG

hammer-scrape

Version:

Unifies Cheerio and Puppeteer for the most streamline scraping experience

16 lines (15 loc) 364 B
/** * A generimc core error */ export declare abstract class CoreError extends Error { constructor(message?: string); } /** * A standard Not initialized error meant to be thrown */ export declare class CoreNotInitializedError extends CoreError { constructor(); } export declare class CoreRequestNotCreatedError extends CoreError { constructor(); }