mirror of
https://github.com/vercel/commerce.git
synced 2025-07-26 03:31:23 +00:00
🔨 refactor: collapse checkout
:%s
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
export interface ProductProps {
|
||||
category: string
|
||||
category?: string
|
||||
name: string
|
||||
slug: string
|
||||
weight: string
|
||||
price: string
|
||||
oldPrice?: string
|
||||
discount?: string
|
||||
imageSrc: string
|
||||
isNotSell?: boolean
|
||||
}
|
||||
|
||||
export interface FeaturedProductProps {
|
||||
@@ -16,20 +20,20 @@ export interface FeaturedProductProps {
|
||||
|
||||
export interface RecipeProps {
|
||||
title: string
|
||||
description:string
|
||||
description: string
|
||||
imageSrc: string
|
||||
}
|
||||
|
||||
export interface CheckOutForm {
|
||||
name: string
|
||||
email:string
|
||||
address: string
|
||||
city:string
|
||||
state:string
|
||||
code:number
|
||||
phone:number
|
||||
method:string
|
||||
shipping_fee:number
|
||||
name?: string
|
||||
email?:string
|
||||
address?: string
|
||||
city?:string
|
||||
state?:string
|
||||
code?:number
|
||||
phone?:number
|
||||
method?:string
|
||||
shipping_fee?:number
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user