src/components/multi-slot-container/multi-slot-container.model.ts
This interface represents the configuration of a MultiSlotContainerComponent.
CmsComponent
Properties |
headline |
headline:
|
Type : string
|
Optional |
items |
items:
|
Type : any
|
Optional |
previewId |
previewId:
|
Type : string
|
Optional |
import { CmsComponent } from '@spartacus/core';
/**
* This interface represents the configuration of a {@link MultiSlotContainerComponent}.
*
* @export
* @interface MultiSlotContainerComponentData
*/
export interface MultiSlotContainerComponentData extends CmsComponent {
previewId?: string;
headline?: string;
items?: any;
}