import { IRecommendation } from "../components"; export interface IExploreView { recs?: IRecommendation[], bounds?: IBounds } export const emptyBounds = { max_x: 0, max_y: 0, min_x: 0, min_y: 0 } export interface IBounds { max_x: number, max_y: number, min_x: number, min_y: number }