integration-libs/cds/src/cds-models/cms.model.ts
Properties |
|
| backgroundColour |
backgroundColour:
|
Type : string
|
| Optional |
| container |
container:
|
Type : string
|
| Optional |
| numberToDisplay |
numberToDisplay:
|
Type : number
|
| Optional |
| scroll |
scroll:
|
Type : string
|
| Optional |
| strategy |
strategy:
|
Type : string
|
| Optional |
| textColour |
textColour:
|
Type : string
|
| Optional |
| title |
title:
|
Type : string
|
| Optional |
| viewportPercentage |
viewportPercentage:
|
Type : number
|
| Optional |
import { CmsComponent } from '@spartacus/core';
export interface CmsMerchandisingCarouselComponent extends CmsComponent {
title?: string;
strategy?: string;
numberToDisplay?: number;
scroll?: string;
container?: string;
textColour?: string;
backgroundColour?: string;
viewportPercentage?: number;
}