UNPKG

faceit-node-api

Version:

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

9 lines (8 loc) 169 B
export interface ErrorResponse { http_status?: number; message: string; } export interface ApiResponse { errors?: ErrorResponse[]; [key: string]: any; }