UNPKG

steam-market

Version:
10 lines (9 loc) 279 B
import type { Price } from './Price.js'; import type { PriceHistoryResponse } from './PriceHistoryResponse.js'; export interface PriceHistory<T = PriceHistoryResponse> { _data: T; success: boolean; pricePrefix: string; priceSuffix: string; prices: Price[]; }