@eljs/utils
Version:
Collection of nodejs utility.
20 lines • 414 B
TypeScript
/**
* 下载选项
*/
export interface DownloadGitRepositoryOptions {
/**
* 分支
*/
branch?: string;
/**
* 目标路径
*/
dest?: string;
}
/**
* 下载 git 仓库
* @param url git 地址
* @param options 选项
*/
export declare function downloadGitRepository(url: string, options?: DownloadGitRepositoryOptions): Promise<string>;
//# sourceMappingURL=download.d.ts.map