UNPKG

@lui-ui/lui-vue

Version:

This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.

10 lines (9 loc) 326 B
import type { Ref } from 'vue'; import type { State } from '../globals/types'; interface DescriptionPropTypes { state: Ref<State>; } export declare function useGlobalDescriptionClasses(props: DescriptionPropTypes, attrs: any): { descriptionClasses: import("vue").ComputedRef<(string | object | null)[]>; }; export {};