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.
17 lines
491 B
17 lines
491 B
1 month ago
|
import { FilterPattern, Plugin } from 'vite';
|
||
|
import { VueJSXPluginOptions } from '@vue/babel-plugin-jsx';
|
||
|
|
||
|
interface FilterOptions {
|
||
|
include?: FilterPattern;
|
||
|
exclude?: FilterPattern;
|
||
|
}
|
||
|
interface Options extends VueJSXPluginOptions, FilterOptions {
|
||
|
babelPlugins?: any[];
|
||
|
/** @default ['defineComponent'] */
|
||
|
defineComponentName?: string[];
|
||
|
}
|
||
|
|
||
|
declare function vueJsxPlugin(options?: Options): Plugin;
|
||
|
|
||
|
export { type FilterOptions, type Options, vueJsxPlugin as default };
|