HotTRDealsFrontend/src/models/user/UserProfile.ts
cureb a48d32fdec created image array
ui overhaul
2026-01-23 17:28:05 +00:00

10 lines
319 B
TypeScript

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
}