UNPKG

hongluan-business-ui

Version:
9 lines (8 loc) 381 B
import type { App, Plugin } from 'vue'; import type { ConfigProviderContext } from 'hongluan-ui'; export declare type installDefinition = (app: App, options: ConfigProviderContext) => void; export declare type makeInstallerDefinition = (components: Plugin[]) => { version: string; install: installDefinition; }; export declare const makeInstaller: makeInstallerDefinition;