bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
58 lines (57 loc) • 2.22 kB
text/typescript
import { BvCarouselEvent } from '../../utils';
import { Numberish } from '../../types/CommonTypes';
import { BCarouselProps, BCarouselSlots } from '../../types';
type __VLS_Props = Omit<BCarouselProps, 'modelValue'>;
type __VLS_Slots = BCarouselSlots;
type __VLS_ModelProps = {
modelValue?: Exclude<BCarouselProps['modelValue'], undefined>;
};
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {
resume: import('../../../node_modules/@vueuse/shared').Fn;
pause: import('../../../node_modules/@vueuse/shared').Fn;
next: () => void;
prev: () => void;
slideTo: (value: number) => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: number) => any;
slide: (value: BvCarouselEvent) => any;
slid: (value: BvCarouselEvent) => any;
"prev-click": (value: MouseEvent) => any;
"next-click": (value: MouseEvent) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
onSlide?: ((value: BvCarouselEvent) => any) | undefined;
onSlid?: ((value: BvCarouselEvent) => any) | undefined;
"onPrev-click"?: ((value: MouseEvent) => any) | undefined;
"onNext-click"?: ((value: MouseEvent) => any) | undefined;
}>, {
fade: boolean;
id: string;
noWrap: boolean;
interval: number;
noHoverPause: boolean;
imgHeight: string;
imgWidth: string;
noAnimation: boolean;
controls: boolean;
background: string;
controlsNextText: string;
controlsPrevText: string;
indicators: boolean;
indicatorsButtonLabel: string;
labelIndicators: string;
keyboard: boolean;
noTouch: boolean;
ride: boolean | "carousel";
rideReverse: boolean;
touchThreshold: Numberish;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};