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) 512 B
import type { Components } from "../../api"; import type { MinecraftInventoryData } from "../../AugmentedTypes"; export type SkyBlockMuseumItem = { donated_time: number; featured_slot: string; borrowing?: boolean; items: MinecraftInventoryData; }; /** augment the typing of items / special */ export type SkyBlockMuseumMember = Omit<Components.Schemas.SkyBlockMuseum, "items"> & { items?: { [key: string]: SkyBlockMuseumItem | undefined; }; special?: SkyBlockMuseumItem[]; };