UNPKG

cryptomarket

Version:

The CryptoMarket for Node.js

13 lines (11 loc) 196 B
export interface PriceHistory { currency: string; history: PricePoint[]; } export interface PricePoint { timestamp: string; open: string; close: string; min: string; max: string; }