mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-06-08 17:37:24 +08:00
15 lines
434 B
TypeScript
15 lines
434 B
TypeScript
import sfcCompiler from '@vue/compiler-sfc';
|
|
interface ResolvedVuePaths {
|
|
vue: string;
|
|
'@vue/runtime-dom': string;
|
|
'@vue/runtime-core': string;
|
|
'@vue/reactivity': string;
|
|
'@vue/shared': string;
|
|
compiler: string;
|
|
version: string;
|
|
isLocal: boolean;
|
|
}
|
|
export declare function resolveVue(root: string): ResolvedVuePaths;
|
|
export declare function resolveCompiler(cwd: string): typeof sfcCompiler;
|
|
export {};
|