import type { Product } from "@/services/resources/products"; export type User = { id: number; name: string; email: string; products: Product[]; }