UNPKG

steamcommunity-inventory

Version:

A rate limit and response handler for steamcommunity inventories. - It's functional. - Will appreciate all feedback I can get

13 lines 435 B
import { Inventory } from '../Inventory'; import { EconItem, Asset, Description } from './types'; export declare type ToEconParams = { assets: Asset[]; descriptions: Description[]; }; export declare class Parser<T> { private inventory; constructor(inventory: Inventory<T>); toEconNew({ assets, descriptions }: ToEconParams): T[]; format(econItem: EconItem): T; } //# sourceMappingURL=Parser.d.ts.map