make-installer.d.ts 298 B

123456
  1. import type { App, Plugin } from '@vue/runtime-core';
  2. import type { ConfigProviderContext } from 'element-plus/es/components/config-provider';
  3. export declare const makeInstaller: (components?: Plugin[]) => {
  4. version: string;
  5. install: (app: App, options?: ConfigProviderContext) => void;
  6. };