@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
7 lines (6 loc) • 321 B
text/typescript
import { MaybeRefOrGetter, UnwrapRef, ComputedRef } from 'vue';
/**
* Attribution: Radix Vue Team
* Retrieved from: https://www.radix-vue.com/utilities/use-forward-props.html
*/
export declare function useForwardProps<T extends MaybeRefOrGetter<Record<string, any>>, U extends UnwrapRef<T>>(props: T): ComputedRef<U>;