ayakashi
Version:
The next generation web scraping framework
13 lines (12 loc) • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.apiPrelude = void 0;
const retry_1 = require("./actions/retry");
const join_1 = require("./actions/join");
function apiPrelude() {
const ayakashiInstance = {};
retry_1.attachRetry(ayakashiInstance);
join_1.attachJoinActions(ayakashiInstance);
return ayakashiInstance;
}
exports.apiPrelude = apiPrelude;