@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
8 lines (7 loc) • 402 B
text/typescript
import { useForwardProps } from './use-forward-props';
import { ComputedRef } from 'vue';
/**
* Attribution: Radix Vue Team
* Retrieved from: https://www.radix-vue.com/utilities/use-forward-props-emits.html
*/
export declare function useForwardPropsEmits<T extends Parameters<typeof useForwardProps>[0], Name extends string>(props: T, emit?: (name: Name, ...args: any[]) => void): ComputedRef<any>;