@spartacus/storefront
Version:
Spartacus Storefront is a package that you can include in your application, which allows you to add default storefront features.
26 lines (25 loc) • 1.18 kB
TypeScript
import { CmsService } from '@spartacus/core';
import { Observable } from 'rxjs';
import { CmsComponentsService } from '../../../services/cms-components.service';
import * as i0 from "@angular/core";
/**
* Provides data for `CmsComponentData`. This is used while component is injected
* dynamically, so that the component implementation can access the data.
*
* The data is resolved from dynamic data (CMS api) as well as static configured data.
*/
export declare class ComponentDataProvider {
protected componentsService: CmsComponentsService;
protected cmsService: CmsService;
constructor(componentsService: CmsComponentsService, cmsService: CmsService);
/**
* Return the component data for a component given by the `uid`.
*
* If the `type` is provided, static component data (if available) is
* merged into the component data. The static data is complemented and
* overridden with data retrieved from the cms service.
*/
get<T>(uid: string, type?: string): Observable<T>;
static ɵfac: i0.ɵɵFactoryDeclaration<ComponentDataProvider, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<ComponentDataProvider>;
}