Skip to content

Commit

Permalink
Add Missing TypeScript Types
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Aug 27, 2024
1 parent 83ef2b6 commit ddbe783
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2632,6 +2632,21 @@ declare module 'hypixel-api-reborn' {
candyUsed: number;
skin: string | null;
}
class SkyblockMuseumItem {
constructor(data: Record<string, unknown>);
name:string|null
items:SkyblockInventoryItem[]
donatedTime:number
donatedTimeAt:Date
borrowing:boolean
featuredSlot:string|null
}
class SkyblockMuseum {
constructor(data: Record<string, unknown>);
raw: object;
getWardrobe(): Promise<SkyblockMuseumItem[]>;
getWardrobe(): Promise<SkyblockMuseumItem[]>;
}
class SkyblockGarden {
constructor(data: Record<string, unknown>);
level: SKYBLOCK_SKILL_DATA;
Expand Down

0 comments on commit ddbe783

Please sign in to comment.