commerce/src/utils/types.utils.ts
unknown c27fbef46b feat: ModalCommon
:%s
2021-08-27 11:57:18 +07:00

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