UNPKG

faceit-node-api

Version:

Lightweight node.js module for easier use of the Faceit Data API.

9 lines (8 loc) 307 B
import { ApiResponse, QueryParams } from '@interfaces'; export default class Faceit { private static _apiKey; private apiUrl; constructor(path: string | null); static setApiKey(apiKey: string): void; processRequest(uri: string | null, queryparams?: QueryParams): Promise<ApiResponse>; }