Skip to content

Commit

Permalink
Add back removed function
Browse files Browse the repository at this point in the history
  • Loading branch information
Kathund committed Aug 4, 2024
1 parent ce1cf42 commit 9a56799
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1236,6 +1236,16 @@ declare module 'hypixel-api-reborn' {
includeItemBytes?: boolean,
options?: methodOptions
): Promise<Auction[]>;
/**
* Allows you to get skyblock auctions
* @param {string|number|number[]} page - "*", a page number, or an array with the start and the end page number ( automatically sorted )
* @param {auctionsOptions} [options={}] Options
* @return {Promise<{info:AuctionInfo,auctions:Auction[]}>}
*/
getSkyblockAuctions(
page: string | number | number[],
options: auctionsOptions
): Promise<{ info: AuctionInfo; auctions: Auction[] }>;
/**
* @description Allows you to get all auctions of player
* @param {string} query - player nickname or uuid
Expand Down

0 comments on commit 9a56799

Please sign in to comment.