UNPKG

portalis-component

Version:

Component Library for Nuxt 3 using TailwindCSS

11 lines (10 loc) 301 B
import type { InjectionKey, ShallowRef, Slots } from 'vue-demi'; export interface DropdownNode { slots: Slots; } export interface DropdownContext { tree: ShallowRef<DropdownNode>; next: () => void; back: () => void; } export declare const DROPDOWN_TREE: InjectionKey<DropdownContext>;