import type { Model } from "./base/model" import type { Product } from "./product" import type { ProductDiscount } from "./product_discount" export type ProductSku = Model & { product_id: number code: string name: string price: string status: number product?: Product price_min?: string discount?: ProductDiscount sort: number count_min: number }