13 lines
286 B
TypeScript
13 lines
286 B
TypeScript
|
import { FilterPattern } from '@rollup/pluginutils';
|
||
|
import { Plugin } from 'vite';
|
||
|
|
||
|
interface Options {
|
||
|
parserPlugins?: readonly string[];
|
||
|
include?: FilterPattern;
|
||
|
exclude?: FilterPattern;
|
||
|
}
|
||
|
|
||
|
declare const prefreshPlugin: (options?: Options) => Plugin;
|
||
|
|
||
|
export = prefreshPlugin;
|