版博士V2.0程序
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.

преди 1 година
1234567891011121314
  1. import { FilterPattern, Plugin } from 'vite';
  2. import { VueJSXPluginOptions } from '@vue/babel-plugin-jsx';
  3. interface FilterOptions {
  4. include?: FilterPattern;
  5. exclude?: FilterPattern;
  6. }
  7. type Options = VueJSXPluginOptions & FilterOptions & {
  8. babelPlugins?: any[];
  9. };
  10. declare function vueJsxPlugin(options?: Options): Plugin;
  11. export { FilterOptions, Options, vueJsxPlugin as default };