UNPKG

@ks89/angular-modal-gallery

Version:
23 lines (22 loc) 535 B
/** * Interface `BreakpointsConfig` to configure responsive breakpoints as numbers to express pixels */ export interface BreakpointsConfig { xSmall: number; small: number; medium: number; large: number; xLarge: number; } /** * Interface `CarouselPreviewConfig` to configure carousel's previews */ export interface CarouselPreviewConfig { visible: boolean; number?: number; arrows?: boolean; clickable?: boolean; width?: string; maxHeight?: string; breakpoints?: BreakpointsConfig; }