dota-wiki-api
Version:
A module to communicate with Liquipedia's Dota 2 Wiki to fetch Team Info, DPC Rankings, Dota Game Schedules, and more!
11 lines (10 loc) • 327 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const cachefetch_1 = require("../modules/cachefetch");
class Base {
constructor(config) {
this.userAgentValue = config.userAgentValue;
this.cacheFetch = new cachefetch_1.CacheFetch(!!config.useHttps);
}
}
exports.Base = Base;