UNPKG

@kamino-finance/kamino-db

Version:
13 lines (10 loc) 303 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;