jialh
2025-01-06 4d6d772771d2da54a4887d60f3b2ea21a72b3d7d
1
2
3
4
5
6
7
8
9
10
11
import type { WatchOptions } from 'chokidar';
import type { Plugin } from 'vite';
import { FileWatcherOptions } from '../../watcher';
export declare type UniViteCopyPluginTarget = Omit<FileWatcherOptions, 'verbose'> & {
    watchOptions?: WatchOptions;
};
export interface UniViteCopyPluginOptions {
    targets: UniViteCopyPluginTarget[];
    verbose: boolean;
}
export declare function uniViteCopyPlugin({ targets, verbose, }: UniViteCopyPluginOptions): Plugin;