14 lines
237 B
TypeScript
14 lines
237 B
TypeScript
import type { Seller } from "./seller/Seller"
|
|
|
|
export type DealDraft = {
|
|
title: string
|
|
description?: string
|
|
url: string
|
|
price?: number
|
|
imageUrl: string
|
|
images?: File[] // max 5
|
|
|
|
seller: Seller
|
|
customCompany?: string
|
|
}
|