steam-market
Version:
Steam market API client
17 lines (16 loc) • 481 B
TypeScript
import type { Asset } from './Asset.js';
import type { Event } from './Event.js';
import type { Listing } from './Listing.js';
import type { MyHistoryResponse } from './MyHistoryResponse.js';
import type { Purchase } from './Purchase.js';
export interface MyHistory {
_data: MyHistoryResponse;
success: boolean;
pageSize: number;
totalCount: number;
start: number;
assets: Asset[];
events: Event[];
purchases: Purchase[];
listings: Listing[];
}