bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
64 lines (63 loc) • 2.99 kB
TypeScript
import { BCardProps } from '../../types/ComponentProps';
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: Readonly<{
default?: (props: Record<string, never>) => any;
footer?: (props: Record<string, never>) => any;
header?: (props: Record<string, never>) => any;
img?: (props: Record<string, never>) => any;
}> & {
default?: (props: Record<string, never>) => any;
footer?: (props: Record<string, never>) => any;
header?: (props: Record<string, never>) => any;
img?: (props: Record<string, never>) => any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<BCardProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BCardProps> & Readonly<{}>, {
variant: import('../..').ColorVariant | null;
tag: string;
bodyClass: import('../../types/AnyValuedAttributes').ClassValue;
footerClass: import('../../types/AnyValuedAttributes').ClassValue;
headerClass: import('../../types/AnyValuedAttributes').ClassValue;
title: string;
bgVariant: import('../../types/ColorTypes').BgColorVariant | null;
textVariant: import('../..').TextColorVariant | null;
headerTag: string;
align: import('../..').AlignmentTextHorizontal;
bodyBgVariant: import('../../types/ColorTypes').BgColorVariant | null;
bodyTag: string;
bodyText: string;
bodyTextVariant: import('../..').TextColorVariant | null;
borderVariant: import('../../types/ColorTypes').BorderColorVariant | null;
footer: string;
footerBgVariant: import('../../types/ColorTypes').BgColorVariant | null;
footerBorderVariant: import('../../types/ColorTypes').BorderColorVariant | null;
footerTag: string;
footerTextVariant: import('../..').TextColorVariant | null;
footerVariant: import('../..').ColorVariant | null;
header: string;
headerBgVariant: import('../../types/ColorTypes').BgColorVariant | null;
headerBorderVariant: import('../../types/ColorTypes').BorderColorVariant | null;
headerTextVariant: import('../..').TextColorVariant | null;
headerVariant: import('../..').ColorVariant | null;
imgAlt: string;
imgPlacement: import('../..').Placement | "overlay";
imgHeight: import('../../types/CommonTypes').Numberish;
imgSrc: string;
imgWidth: import('../../types/CommonTypes').Numberish;
noBody: boolean;
subtitle: string;
subtitleTag: string;
subtitleTextVariant: import('../..').TextColorVariant | null;
titleTag: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};