type.d.ts
400 Bytes
import { Category } from './type.d'
export interface Category {
name: string
imageUrl: string
id: string
}
export interface CategoryRootType {
categoryDisplayName: string
list: Category[]
}
export interface Product {
name: string
id: string
imageUrl: string
}
export interface ProductListQuery {
productCategoryId: string
keyword?: string
pageNo: number
pageSize: number
}