UNPKG

hypixel-api-typescript

Version:

This package is a wrapper for https://api.hypixel.net written in Typescript.

16 lines (12 loc) 262 B
import AbstractResponse from "./AbstractResponse"; export interface KeyRespond extends AbstractResponse{ record: KeyInfo; } /** * This is what you need ;) */ export interface KeyInfo { ownerUuid: string; key: string; totalQueries: number; }