import { DaffCartCreateSuccess } from '@daffodil/cart/state'
Indicates the successful creation of a new cart.
class DaffCartCreateSuccess<<T extends DaffCart = DaffCart>> implements Action {
readonly type: DaffCartActionTypes.CartCreateSuccessAction = DaffCartActionTypes.CartCreateSuccessAction
payload: Pick<T, "id">
}