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.
24 lines
765 B
24 lines
765 B
import * as unplugin from 'unplugin';
|
|
import { FilterPattern } from '@rollup/pluginutils';
|
|
import { U as UnimportOptions } from './shared/unimport.c45f29b8.js';
|
|
import 'magic-string';
|
|
import 'mlly';
|
|
|
|
interface UnimportPluginOptions extends UnimportOptions {
|
|
include: FilterPattern;
|
|
exclude: FilterPattern;
|
|
dts: boolean | string;
|
|
/**
|
|
* Enable implicit auto import.
|
|
* Generate global TypeScript definitions.
|
|
*
|
|
* @default true
|
|
*/
|
|
autoImport?: boolean;
|
|
}
|
|
declare const defaultIncludes: RegExp[];
|
|
declare const defaultExcludes: RegExp[];
|
|
declare const _default: unplugin.UnpluginInstance<Partial<UnimportPluginOptions>, boolean>;
|
|
|
|
export { type UnimportPluginOptions, _default as default, defaultExcludes, defaultIncludes };
|