import { type Identity } from '@byted-apaas/cli-core-sdk'; import { type TrackingTaskInfo } from '../../helpers/types'; export interface JobDeployPackageOptions { deploymentPackagePath: string; cwd: string; identity: Identity; namespace: string; } /** * 将输入的标准部署包进行部署 * 除此之外,不做任何其他的事情 * @param options */ export default function jobDeploy(options: JobDeployPackageOptions): Promise;