second commit
This commit is contained in:
23
node_modules/flowbite/lib/esm/components/carousel/interface.d.ts
generated
vendored
Normal file
23
node_modules/flowbite/lib/esm/components/carousel/interface.d.ts
generated
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
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;
|
||||
destroy(): void;
|
||||
removeInstance(): void;
|
||||
destroyAndRemoveInstance(): void;
|
||||
}
|
||||
//# sourceMappingURL=interface.d.ts.map
|
Reference in New Issue
Block a user