UNPKG

@zikeji/hypixel

Version:

With IntelliSense support & test coverage, this is an unopinionated async/await API wrapper for Hypixel's Public API. It is developed in TypeScript complete with documentation, typed interfaces for all API responses, built-in rate-limit handling, flexible

16 lines (15 loc) 303 B
/** @hidden */ export interface RateLimitData { /** * Remaining API calls until the limit resets. */ remaining: number; /** * Time, in seconds, until remaining resets to limit. */ reset: number; /** * How many requests per minute your API key can make. */ limit: number; }