type.d.ts 708 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
  basename1: string
  basename2: string
  basename2: string
  basecore1: string
  basecore2: string
  basecore3: string
  model: string
  brandName: string
  physicalproperty: string
  storage: string
  productimageliststore: ProductImage[]
}

export interface ProductListQuery {
  productCategoryId: string
  keyword?: string
  pageNo: number
  pageSize: number
}

export interface ProductImage {
  url: string
  fileKey: string
}