unplugin-keep-polite
Version:
keep polite by plugin
17 lines (13 loc) • 408 B
TypeScript
import * as _unplugin from 'unplugin';
interface Options {
verbose?: boolean;
autoReplace: boolean;
replacer: string | ((line: string) => string);
customDict?: string[] | {
path: string;
};
extraDict?: string[];
}
type GeneralOptions = Partial<Options> | undefined;
declare const unplugin: _unplugin.UnpluginInstance<GeneralOptions, false>;
export { unplugin as default };