maz-ui
Version:
A standalone components library for Vue.Js 3 & Nuxt.Js 3
36 lines (35 loc) • 1.31 kB
TypeScript
export interface Props {
/** Do not display the scroll buttons */
noScrollBtn?: boolean;
/** Aria label for the previous button */
ariaLabelPreviousButton?: string;
/** Aria label for the next button */
ariaLabelNextButton?: string;
/** Hide the scrollbar when not active */
hideScrollbar?: boolean;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
title?(_: {}): any;
"previous-icon"?(_: {}): any;
"next-icon"?(_: {}): any;
default?(_: {}): any;
};
refs: {
MazCarouselItems: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
ariaLabelPreviousButton: string;
ariaLabelNextButton: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};