export interface ExcludeUselessScriptsInIntlMiniProgramInDevOptions { log?: { info?: (message: string) => void; }; beforeCopy?(): void | Promise; afterCopy?(): void | Promise; } /** * Exclude the useless js files in miniprogram directory before uploading. * * @export * @param {string} projectDir the directory of the miniprogram directory (should be compiled with `goldfish compile`). */ export default function excludeUselessScriptsInIntlMiniProgramInDev(projectDir: string, options?: ExcludeUselessScriptsInIntlMiniProgramInDevOptions): void;