UNPKG

@kamino-finance/kamino-db

Version:
15 lines (14 loc) 321 B
export interface PriceEntity { id: number; created_on: Date; price: string; cluster_id: number; token_id: number; } export type PriceEntityHourEntity = PriceEntity & { resampled_on: Date; }; export type PriceEntityDayEntity = PriceEntity & { resampled_on: Date; }; export default PriceEntity;