UNPKG

@spartacus/storefront

Version:

Spartacus Storefront is a package that you can include in your application, which allows you to add default storefront features.

8 lines (7 loc) 397 B
import { InjectionToken } from '@angular/core'; import { Observable } from 'rxjs'; import { BREAKPOINT } from '../../../layout/config/layout-config'; export declare const PAGE_LAYOUT_HANDLER: InjectionToken<PageLayoutHandler[]>; export interface PageLayoutHandler { handle(slots: Observable<string[]>, pageTemplate?: string, section?: string, breakpoint?: BREAKPOINT): Observable<string[]>; }