fuc-new/doc/node_modules/@vuepress/bundler-vite/dist/index.d.ts
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

16 lines
443 B
TypeScript

import { BundlerOptions, Bundler } from '@vuepress/core';
import { Options } from '@vitejs/plugin-vue';
import { InlineConfig } from 'vite';
/**
* Options for bundler-vite
*/
interface ViteBundlerOptions extends BundlerOptions {
viteOptions?: InlineConfig;
vuePluginOptions?: Options;
}
declare const viteBundler: (options?: ViteBundlerOptions) => Bundler;
export { type ViteBundlerOptions, viteBundler as default, viteBundler };