UNPKG

apextab-api

Version:

A simple Node.js Wrapper for the *Apex Legends* API provided by ApexTab.

11 lines (10 loc) 238 B
export interface ApextabConfig { APEXTAB_HOST_URL: string; APEXTAB_API: string; ENDPOINTS: KeyValue; } interface KeyValue { [key: string]: string; } export declare const DEFAULT_CONFIG: ApextabConfig; export {};