hammer-scrape
Version:
Unifies Cheerio and Puppeteer for the most streamline scraping experience
15 lines • 573 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var EngineType;
(function (EngineType) {
/**
* Engine type can only be of one core throughout the entire usage. Useful if you are optimizing for a particular situation
*/
EngineType[EngineType["Fixed"] = 0] = "Fixed";
/**
* The engine will use both Puppeteer and Cheerio
*/
EngineType[EngineType["Dynamic"] = 1] = "Dynamic";
})(EngineType = exports.EngineType || (exports.EngineType = {}));
exports.default = EngineType;
//# sourceMappingURL=engine_type.js.map