14 lines
495 B
JavaScript
14 lines
495 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.PlaywrightCrawlerEngine = void 0;
|
|
/**
|
|
* PlaywrightCrawlerEngine — adapts PlaywrightAgent to implement the ICrawlerEngine port.
|
|
*/
|
|
const PlaywrightAgent_1 = require("../../../../plugins/agents/PlaywrightAgent");
|
|
class PlaywrightCrawlerEngine extends PlaywrightAgent_1.PlaywrightAgent {
|
|
constructor(config = {}) {
|
|
super(config);
|
|
}
|
|
}
|
|
exports.PlaywrightCrawlerEngine = PlaywrightCrawlerEngine;
|