GitHub

DaffProductReducersState

import { DaffProductReducersState } from '@daffodil/product/state'

Interface for the redux store of the product feature area.

interface DaffProductReducersState<T extends DaffProduct = DaffProduct> {
  products: EntityState<T>
  productGrid: DaffProductGridReducerState<T>
  product: DaffProductReducerState
  bestSellers: DaffBestSellersReducerState
}