UNPKG

@ark-ui/vue

Version:

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

6 lines (5 loc) 344 B
import { NodeState } from '@zag-js/tree-view'; import { ComputedRef } from 'vue'; export interface UseTreeViewNodeContext extends ComputedRef<NodeState> { } export declare const TreeViewNodeStateProvider: (opts: UseTreeViewNodeContext) => void, useTreeViewNodeContext: (fallback?: UseTreeViewNodeContext | undefined) => UseTreeViewNodeContext;