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;
