export default interface Ticker24HourResponse { symbol: string; priceChange: string; priceChangePercent: string; weightedAvgPrice: string; prevClosePrice: string; lastPrice: string; lastQuantity: string; bidPrice: string; askPrice: string; openPrice: string; highPrice: string; lowPrice: string; volume: string; quoteVolume: string; openTime: number; closeTime: number; firstId: number; lastId: number; trades: number; } export interface DirtyTicker24HourResponse extends Ticker24HourResponse { lastQty: string; count: number; }