UNPKG

shrimpy-node

Version:
13 lines (12 loc) 278 B
import { Decimal } from 'decimal.js'; export interface IHistoricalCandlestick { open: Decimal; high: Decimal; low: Decimal; close: Decimal; volume: Decimal; quoteVolume: number; btcVolume: number; usdVolume: number; time: Date; }