UNPKG

952 BTypeScriptView Raw
1export interface AutoplayStrings {
2 toggleAutoplay: string;
3}
4export interface AutoplaySettings {
5 /**
6 * Enable autoplay plugin
7 */
8 autoplay: boolean;
9 /**
10 * Enable slideshow autoplay
11 */
12 slideShowAutoplay: boolean;
13 /**
14 * The time (in ms) between each auto transition.
15 */
16 slideShowInterval: number;
17 /**
18 * Show autoplay progressBar
19 */
20 progressBar: boolean;
21 /**
22 * If false autoplay will be stopped after first user action
23 */
24 forceSlideShowAutoplay: boolean;
25 /**
26 * Show/hide autoplay controls.
27 */
28 autoplayControls: boolean;
29 /**
30 * Specify where the autoplay controls should be appended.
31 */
32 appendAutoplayControlsTo: string;
33 /**
34 * Custom translation strings for aria-labels
35 */
36 autoplayPluginStrings: AutoplayStrings;
37}
38export declare const autoplaySettings: AutoplaySettings;