@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
11 lines • 499 B
TypeScript
import type { IRelease } from "../../entities";
import type { DeployStatus } from "../../interfaces/SystemTypes";
export declare function updateReleaseStatus(release: IRelease, status: DeployStatus, options?: {
env?: string;
isDebugging?: boolean;
}): Promise<IRelease>;
export declare function updateReleaseStatusById(releaseId: string, status: DeployStatus, options?: {
env?: string;
isDebugging?: boolean;
}): Promise<IRelease>;
//# sourceMappingURL=update-release-status.d.ts.map