bootstrap-vue-next
Version:
BootstrapVueNext is an early and lovely component library for Vue 3 & Nuxt 3 based on Bootstrap 5 and Typescript.
8 lines (7 loc) • 317 B
text/typescript
import { MaybeRefOrGetter } from 'vue';
import { BorderColorVariant, ColorExtendables } from '../types/ColorTypes';
export declare const useColorVariantClasses: (obj: MaybeRefOrGetter<ColorExtendables & {
borderVariant?: BorderColorVariant | null;
}>) => import('vue').ComputedRef<{
[x: string]: boolean;
}>;