liquipedia-api
Version:
Node.js Liquipedia API
23 lines (22 loc) • 927 B
TypeScript
import { Config } from '../types/config';
import { Map } from '../types/pubgmobile/map';
import { Match } from '../types/pubgmobile/match';
import { Player } from '../types/pubgmobile/player';
import { Team } from '../types/pubgmobile/team';
import { Transfer } from '../types/pubgmobile/transfer';
import { Tournament, TournamentTier } from '../types/pubgmobile/tournaments';
import { Weapon } from '../types/pubgmobile/weapon';
import { Vehicle } from '../types/pubgmobile/vehicle';
export declare class PubgMobileClient {
private api;
private parser;
constructor(config: Config);
getPlayers(): Promise<Player[]>;
getTeams(): Promise<Team[]>;
getTransfers(): Promise<Transfer[]>;
getMatches(): Promise<Match[]>;
getMaps(): Promise<Map[]>;
getWeapons(): Promise<Weapon[]>;
getVehicles(): Promise<Vehicle[]>;
getTournaments(tournamentType?: TournamentTier): Promise<Tournament[]>;
}