UNPKG

@devkitvue/filemanager

Version:

Devkit Base Components is a Vue plugin offering a collection of reusable, headless components designed to streamline your Vue.js development workflow. Built for flexibility and maintainability, this library gives you complete control over styling and beha

10 lines (9 loc) 374 B
import { FilesHandler } from '@devkitvue/config'; import { Plugin } from 'vue'; export * from './app/filemanager'; export type DevkitFilemanagerConfig<TApi extends Record<string, Function>> = { apiClient: TApi; filesHandler?: FilesHandler<TApi>; }; declare const DevkitFilemanagerPlugin: Plugin<DevkitFilemanagerConfig<any>>; export default DevkitFilemanagerPlugin;