Initial commit
This commit is contained in:
17
node_modules/@vitejs/plugin-vue-jsx/dist/index.d.mts
generated
vendored
Normal file
17
node_modules/@vitejs/plugin-vue-jsx/dist/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
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[];
|
||||
tsPluginOptions?: any;
|
||||
}
|
||||
|
||||
declare function vueJsxPlugin(options?: Options): Plugin;
|
||||
|
||||
export { type FilterOptions, type Options, vueJsxPlugin as default };
|
||||
Reference in New Issue
Block a user