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.

15 lines
408 B

import { FilterPattern, Plugin } from 'vite';
import { VueJSXPluginOptions } from '@vue/babel-plugin-jsx';
interface FilterOptions {
include?: FilterPattern;
exclude?: FilterPattern;
}
type Options = VueJSXPluginOptions & FilterOptions & {
babelPlugins?: any[];
};
declare function vueJsxPlugin(options?: Options): Plugin;
export { type FilterOptions, type Options, vueJsxPlugin as default };