forked from hero/www_hero
20 lines
665 B
TypeScript
20 lines
665 B
TypeScript
|
import { CarouselOptions, CarouselItem, IndicatorItem, RotationItems } from './types';
|
||
|
export declare interface CarouselInterface {
|
||
|
_items: CarouselItem[];
|
||
|
_indicators: IndicatorItem[];
|
||
|
_activeItem: CarouselItem;
|
||
|
_intervalDuration: number;
|
||
|
_intervalInstance: number;
|
||
|
_options: CarouselOptions;
|
||
|
_init(): void;
|
||
|
getItem(position: number): CarouselItem;
|
||
|
_getActiveItem(): CarouselItem;
|
||
|
_setActiveItem(item: CarouselItem): void;
|
||
|
slideTo(position: number): void;
|
||
|
next(): void;
|
||
|
prev(): void;
|
||
|
_rotate(rotationItems: RotationItems): void;
|
||
|
cycle(): void;
|
||
|
pause(): void;
|
||
|
}
|
||
|
//# sourceMappingURL=interface.d.ts.map
|