nanobot-voice-interface/frontend/node_modules/@prefresh/vite/index.d.ts

13 lines
286 B
TypeScript
Raw Normal View History

2026-03-06 22:51:19 -05:00
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;