GitHub

DaffOrderCollectionChangeSortingOption

An action for changing the sorting option for this collection.

import { DaffOrderCollectionChangeSortingOption } from '@daffodil/order/state'
class DaffOrderCollectionChangeSortingOption implements DaffCollectionChangeSortingOption {
  readonly type: DaffOrderCollectionActionTypes.ChangeSortingAction
  sort: {
      option: DaffCollectionMetadata['appliedSortOption'];
      direction: DaffCollectionMetadata['appliedSortDirection'];
  }
  cartId: DaffCart['id']
}

Properties

Name Type Description
type DaffOrderCollectionActionTypes.ChangeSortingAction
sort { option: DaffCollectionMetadata['appliedSortOption']; direction: DaffCollectionMetadata['appliedSortDirection']; }
cartId DaffCart['id']