GitHub

DaffProductGridFacadeInterface

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

interface DaffProductGridFacadeInterface<T extends DaffProduct = DaffProduct> {
  loading$: Observable<boolean>
  products$: Observable<T[]>
}

Properties

loading$
Observable<boolean>

The loading state for retrieving a list of products.

products$
Observable<T[]>

The state for a list of products.