You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
298 B

  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. };