import { DynamicRollerTypes, DynamicRollerSizes, PageRollupViewSettings, PageRollupDateSettings } from ".."; import { GuidValue } from "@omnia/fx-models"; export interface DynamicRollerViewSettings extends PageRollupViewSettings, PageRollupDateSettings { imageProp: string; summaryProp: string; showLikesComments: boolean; showRating: boolean; maxNumberOfSlides: number; showNavigation: boolean; showPaging: boolean; sliderType: DynamicRollerTypes; sliderSize: DynamicRollerSizes; autoplay: boolean; loop: boolean; delayBetweenSlides: number; paddingBetweenSlides: number; imagePropRatioUniqueId?: GuidValue; overlayOpacity: number; overlayColor: string; summaryOpacity: number; showDefaultImage: boolean; }