make-installer.d.ts 251 B

12345
  1. import type { App, Plugin } from '@vue/runtime-core';
  2. export declare const makeInstaller: (components?: Plugin[]) => {
  3. version: string;
  4. install: (app: App, options?: Partial<import("./components").ConfigProviderProps> | undefined) => void;
  5. };