10 lines
319 B
TypeScript
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
|
|
} |