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.
16 lines
491 B
16 lines
491 B
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 };
|
|
|