UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

7 lines (6 loc) 392 B
import { DrawerStackApi } from '@zag-js/drawer'; import { PropTypes } from '@zag-js/vue'; import { ComputedRef } from 'vue'; export interface UseDrawerStackContext extends ComputedRef<DrawerStackApi<PropTypes>> { } export declare const DrawerStackProvider: (opts: UseDrawerStackContext) => void, useDrawerStackContext: (fallback?: UseDrawerStackContext | undefined) => UseDrawerStackContext;