Files
aihot/frontend/node_modules/element-plus/es/make-installer.d.ts
2026-05-26 12:56:03 +08:00

10 lines
363 B
TypeScript

import { ConfigProviderContext } from "./components/config-provider/src/constants.js";
import { App, Plugin } from "vue";
//#region ../../packages/element-plus/make-installer.d.ts
declare const makeInstaller: (components?: Plugin[]) => {
version: string;
install: (app: App, options?: ConfigProviderContext) => void;
};
//#endregion
export { makeInstaller };