UNPKG

@inkline/inkline

Version:

Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.

8 lines (7 loc) 285 B
import type { Ref } from 'vue'; type UseClickOutsideCallbackFn = ((event: Event) => void) | (() => void); export declare function useClickOutside(props: { elementRef: Ref<HTMLElement | null>; fn: UseClickOutsideCallbackFn | Ref<UseClickOutsideCallbackFn>; }): void; export {};