import { Ticker } from './tickers.interface';
export interface SingleTicker {
    at: number;
    ticker: Ticker;
}
