resolveVue.d.ts 434 B

1234567891011121314
  1. import sfcCompiler from '@vue/compiler-sfc';
  2. interface ResolvedVuePaths {
  3. vue: string;
  4. '@vue/runtime-dom': string;
  5. '@vue/runtime-core': string;
  6. '@vue/reactivity': string;
  7. '@vue/shared': string;
  8. compiler: string;
  9. version: string;
  10. isLocal: boolean;
  11. }
  12. export declare function resolveVue(root: string): ResolvedVuePaths;
  13. export declare function resolveCompiler(cwd: string): typeof sfcCompiler;
  14. export {};