UNPKG

vue-devui

Version:

DevUI components based on Vite and Vue3

8 lines (7 loc) 328 B
import { Ref, SetupContext } from 'vue'; import { EditableSelectProps } from '../editable-select-types'; interface UseLazyLoadReturnType { loadMore: () => void; } export declare function useLazyLoad(dropdownRef: Ref<HTMLElement | undefined>, props: EditableSelectProps, ctx: SetupContext): UseLazyLoadReturnType; export {};