import { type Identity } from '@byted-apaas/cli-core-sdk'; export interface JobScmPullMergeOptions { workspaceRoot: string; identity: Identity; namespace: string; mergeUse?: 'local' | 'remote'; cwd: string; } /** * 基于自建 scm 系统的代码拉取流程 * @param options */ export default function jobScmPullMerge(options: JobScmPullMergeOptions): Promise;