liquipedia-api
Version:
Node.js Liquipedia API
9 lines (8 loc) • 328 B
TypeScript
import { AxiosRequestConfig } from 'axios';
import { Game } from '../types/dota/games';
import { Response } from '../types/request';
export declare class Request {
private request;
constructor(game: Game, userAgent: string, baseURL?: string);
get(url: string, config?: AxiosRequestConfig<any>): Promise<Response>;
}