brawlhalla-api-ts
Version:
TypeScript wrapper for the Brawlhalla API.
11 lines (10 loc) • 339 B
TypeScript
export interface IRequestArgument {
[key: string]: string;
}
export declare class BrawlhallaRequest {
private readonly apiKey;
private readonly apiUrl;
constructor(apiKey: string, apiUrl: string);
doRequest<T>(pathArguments: string[], params?: IRequestArgument): Promise<T>;
private parseUtf8Recursive;
}