GitHub

DaffReviewsCollectionChangeSortingOption

An action for changing the sorting option for this collection.

import { DaffReviewsCollectionChangeSortingOption } from '@daffodil/reviews/state'
class DaffReviewsCollectionChangeSortingOption implements DaffCollectionChangeSortingOption {
  readonly type: DaffProductReviewsCollectionActionTypes.ChangeSortingAction
  sort: {
      option: DaffCollectionMetadata['appliedSortOption'];
      direction: DaffCollectionMetadata['appliedSortDirection'];
  }
}

Properties

Name Type Description
type DaffProductReviewsCollectionActionTypes.ChangeSortingAction
sort { option: DaffCollectionMetadata['appliedSortOption']; direction: DaffCollectionMetadata['appliedSortDirection']; }