@elora-cloud/elora-cli
Version:
elora build cli 前端打包脚手架
14 lines (12 loc) • 453 B
TypeScript
/**
* copy source file to packages
*/
declare function copyThemeChalkSource(srcDir: string, themeSourceDir: string, distDir: string): any;
interface EloraBuildThemeOptions {
srcDir: string;
themeSourceDir: string;
themeFileDir: string;
distDir: string;
}
declare function EloraBuildTheme(options: EloraBuildThemeOptions): any;
export { EloraBuildTheme, type EloraBuildThemeOptions, copyThemeChalkSource, EloraBuildTheme as default };