apextab-api
Version:
A simple Node.js Wrapper for the *Apex Legends* API provided by ApexTab.
8 lines (7 loc) • 435 B
TypeScript
import { RawPlayer, Platform, SearchResults, Player, Legend, PlayerResult } from './api/index';
export declare module Apextab_API {
function getRawPlayer(playerId: string): Promise<RawPlayer>;
function getPlayerById(playerId: string): Promise<Player>;
function searchPlayer(playerId: string, platform: Platform): Promise<SearchResults>;
}
export { RawPlayer, SearchResults, PlayerResult, Player, Platform, Legend };