Files
commerce/src/utils/types.utils.ts
lytrankieio123 9cc2d2ffc4 🎨 styles: recipe ingradients
:%s
2021-09-01 17:36:49 +07:00

24 lines
452 B
TypeScript

export interface ProductProps {
category: string
name: string
weight: string
price: string
imageSrc: string
isNotSell?: boolean
}
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