apextab-api
Version:
A simple Node.js Wrapper for the *Apex Legends* API provided by ApexTab.
10 lines (9 loc) • 412 B
TypeScript
import { Platform, RawPlayer, SearchResults, Player } from "..";
import { ApextabConfig } from "./Config";
export declare class ApiClient {
static CONFIG: ApextabConfig;
constructor();
static getRawPlayer(playerId: string): Promise<RawPlayer>;
static getPlayer(playerId: string): Promise<Player>;
static searchPlayers(playerId: string, platform: Platform): Promise<SearchResults>;
}