Initial commit
This commit is contained in:
19
node_modules/@vitejs/plugin-vue-jsx/dist/index.d.ts
generated
vendored
Normal file
19
node_modules/@vitejs/plugin-vue-jsx/dist/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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;
|
||||
|
||||
// @ts-ignore
|
||||
export = vueJsxPlugin;
|
||||
export type { FilterOptions, Options };
|
||||
Reference in New Issue
Block a user