UNPKG

keep-vue

Version:

Keep Vue is an open-source component library built on top of Vue3 and Tailwind CSS. It offers a collection of pre-designed UI components and styles that you can easily integrate into your web applications.

11 lines (10 loc) 433 B
import type { UploadContextProps } from "./uploadInterface"; declare const useProvideUpload: (args_0: UploadContextProps) => { options: Partial<import("vue3-dropzone").FileUploadOptions> | undefined; horizontal: boolean | undefined; }; declare function useUpload(): { options: Partial<import("vue3-dropzone").FileUploadOptions> | undefined; horizontal: boolean | undefined; }; export { useProvideUpload, useUpload };