hongluan-business-ui
Version:
Hongluan Business Component Library for Vue 3
9 lines (8 loc) • 381 B
TypeScript
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;