mirror of
https://github.com/vercel/commerce.git
synced 2025-07-06 21:11:20 +00:00
23 lines
428 B
TypeScript
23 lines
428 B
TypeScript
export interface ProductProps {
|
|
category: string
|
|
name: string
|
|
weight: string
|
|
price: string
|
|
imageSrc: string
|
|
}
|
|
|
|
export interface FeaturedProductProps {
|
|
title: string
|
|
subTitle: string
|
|
originPrice: string
|
|
price: string
|
|
imageSrc: string
|
|
}
|
|
|
|
export interface RecipeProps {
|
|
title: string
|
|
description:string
|
|
imageSrc: string
|
|
}
|
|
|
|
export type MouseAndTouchEvent = MouseEvent | TouchEvent |