import { DatabaseModel, Historical, MillisecondsId } from '..'; import { CurrencySymbol } from '../../constants'; /** * Aggregate crypto data that is fetched on an interval. */ export interface AggregateCryptoData extends DatabaseModel { id: MillisecondsId; currency: CurrencySymbol; trending: Historical[]; }