/** * @title Вид * @enumNames ["Горизонтальный", "Вертикальный"] */ export declare type SwipeListControlType = 'horizontal-list' | 'vertical-list'; /** * @title Минимальная высота * @enumNames ['Стандартная', 'Маленькая'] */ export declare type ContainerMinHeight = 866 | 720; /** * @title Количество видимых элементов * @enumNames ["auto", "1", "2", "3", "4"] */ export declare type VisibleItemCount = 0 | 1 | 2 | 3 | 4; export interface SwipeListContainerContent { visibleItemCount?: VisibleItemCount; listType?: SwipeListControlType; minHeight?: ContainerMinHeight; } export interface SwipeListScrollButtonsContent { /** @title Добавление отступа на стрелках */ arrowsPadded?: boolean; } /** * @title Swipe-контроллер */ export declare type SwipeListControlContent = SwipeListContainerContent & SwipeListScrollButtonsContent & { /** @title Точки-индикаторы */ showDots?: boolean; /** @title Показывать стрелки */ showArrows?: boolean; };