import type { PublicUserDetails } from "./User" import type { DealCard } from "../deal/DealCard" import type { UserComment } from "../comment/UserComment" import type { UserStats } from "./userStats" export type UserProfile = { user: PublicUserDetails deals: DealCard[] comments: UserComment[] stats:UserStats }