steamcommunity-inventory
Version:
A rate limit and response handler for steamcommunity inventories. - It's functional. - Will appreciate all feedback I can get
12 lines • 441 B
TypeScript
export declare type FetchMoreParams = {
desiredMoreAmount: number;
currentAmount: number;
moreItems: boolean;
};
/**
* Checks if we can fetch more items.
* @param {number} desiredAmount Specifies the actual amount we want to get. Over 2000.
* @return {boolean}
*/
export declare function fetchMore({ desiredMoreAmount, currentAmount, moreItems, }: FetchMoreParams): boolean;
//# sourceMappingURL=fetchMore.d.ts.map