import { DaffTestingCartShippingInformationService } from '@daffodil/cart/driver/testing'
@Injectable()
class DaffTestingCartShippingInformationService implements DaffCartShippingInformationServiceInterface {
get(cartId: string): any
update(
cartId: string
info: Partial<DaffCartShippingRate>
): any
delete(cartId: string): any
}
anyGet the currently selected shipping method of a cart.
| Parameter | cartId: string |
|---|---|
| Description |
anyUpdate the currently selected shipping method of a cart.
| Parameter | cartId: string |
|---|---|
| Description |
| Parameter | info: Partial<DaffCartShippingRate> |
|---|---|
| Description |
anyRemove the currently selected shipping method from a cart.
| Parameter | cartId: string |
|---|---|
| Description |