GitHub

DaffOrderLoad

Triggers the loading of the specified order.

import { DaffOrderLoad } from '@daffodil/order/state'
class DaffOrderLoad<<T extends DaffOrder = DaffOrder>>  implements Action {
  readonly type: DaffOrderActionTypes.OrderLoadAction
  orderId: T['id']
  cartId: DaffCart['id']
}

Properties

Name Type Description
type DaffOrderActionTypes.OrderLoadAction
orderId T['id']
cartId DaffCart['id']