import { BinanceSymbol } from '../enums';
export interface IBinanceTicker {
    symbol: BinanceSymbol;
    price: string;
}
