@spartacus/storefront
Version:
Spartacus Storefront is a package that you can include in your application, which allows you to add default storefront features.
17 lines (16 loc) • 860 B
TypeScript
import { ReplenishmentOrder, RoutingService, UserReplenishmentOrderService } from '@spartacus/core';
import { Observable } from 'rxjs';
import * as i0 from "@angular/core";
/**
* @deprecated since 4.2 - use order lib instead
*/
export declare class ReplenishmentOrderDetailsService {
protected routingService: RoutingService;
protected userReplenishmentOrderService: UserReplenishmentOrderService;
protected replenishmentOrderCode$: Observable<any>;
protected replenishmentOrderLoad$: Observable<string>;
constructor(routingService: RoutingService, userReplenishmentOrderService: UserReplenishmentOrderService);
getOrderDetails(): Observable<ReplenishmentOrder>;
static ɵfac: i0.ɵɵFactoryDeclaration<ReplenishmentOrderDetailsService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ReplenishmentOrderDetailsService>;
}