uni-ticket-system/node_modules/@dcloudio/vite-plugin-uni/dist/plugins/move.d.ts

20 lines
438 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import type { Plugin } from 'vite';
interface UniMovePluginOptions {
apply: Plugin['apply'];
enforce: Plugin['enforce'];
/**
*
*/
cwd: string;
/**
* glob pattern **\/*.js.mp)
*/
pattern: string;
/**
*
*/
dest: string;
}
export declare function uniMovePlugin({ apply, enforce, cwd, pattern, dest, }: UniMovePluginOptions): Plugin;
export {};