UNPKG

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) 269 B
import { CacheFetch } from '../modules/cachefetch'; export interface IDotaWikiConfig { userAgentValue: string; useHttps?: boolean; } export declare class Base { cacheFetch: CacheFetch; userAgentValue: string; constructor(config: IDotaWikiConfig); }