bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
37 lines (36 loc) • 1.45 kB
text/typescript
import { BTabProps } from '../../types/ComponentProps';
import { BTabSlots } from '../../types/ComponentSlots';
type __VLS_Props = Omit<BTabProps, 'active'>;
type __VLS_Slots = BTabSlots;
type __VLS_ModelProps = {
'active'?: Exclude<BTabProps['active'], undefined>;
};
type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps;
declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, {
activate: () => void;
deactivate: () => void;
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:active": (value: boolean) => any;
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
"onUpdate:active"?: ((value: boolean) => any) | undefined;
}>, {
disabled: boolean;
id: string;
title: string;
tag: string;
noBody: boolean;
lazy: boolean;
unmountLazy: boolean;
buttonId: string;
titleItemClass: import('../../types/AnyValuedAttributes').ClassValue;
titleLinkAttrs: Readonly<import('../../types/AnyValuedAttributes').AttrsValue>;
titleLinkClass: import('../../types/AnyValuedAttributes').ClassValue;
}, {}, {}, {}, 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;
};
};