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.

18 lines
590 B

import type { Plugin } from 'vite';
import type { VitePluginUniResolvedOptions } from '../..';
declare const BUILT_IN_MODULES: {
'vue-router': string;
vuex: string;
'vue-i18n': string;
'@dcloudio/uni-app': string;
'@dcloudio/uni-cloud': string;
'@dcloudio/uni-i18n': string;
'@dcloudio/uni-shared': string;
'@dcloudio/uni-stacktracey': string;
'@vue/shared': string;
pinia: string;
};
export type BuiltInModulesKey = keyof typeof BUILT_IN_MODULES;
export declare function uniResolveIdPlugin(options: VitePluginUniResolvedOptions): Plugin;
export {};