UNPKG

hammer-scrape

Version:

Unifies Cheerio and Puppeteer for the most streamline scraping experience

13 lines (12 loc) 281 B
/** * The type of mode that an engine can be in. * ONLY ONE MODE can be used at one time */ export declare enum EngineMode { Off = "off", Loading = "loading", Idling = "idling", Parsing = "parsing", Manipulating = "manipulating" } export default EngineMode;