bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
8 lines (7 loc) • 412 B
TypeScript
import { MaybeRefOrGetter } from 'vue';
import { LinkIconProps, LinkOpacityProps, LinkUnderlineProps, LinkVariantProps } from '../types/ComponentProps';
export declare const useLinkClasses: (linkProps: MaybeRefOrGetter<LinkUnderlineProps & LinkOpacityProps & LinkIconProps & LinkVariantProps>) => import('vue').ComputedRef<{
[x: string]: boolean;
"link-underline": boolean;
'icon-link': boolean;
}>;