@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
18 lines • 447 B
TypeScript
export interface RolloutOptions {
isDebugging?: boolean;
onUpdate?: (msg?: string) => void;
}
export declare function rolloutV3(releaseId: string, options?: RolloutOptions): Promise<{
error: string;
data: {
releaseId: string;
buildId: string;
};
} | {
error: string;
data?: undefined;
} | {
error: any;
data: import("../../entities").IRelease;
}>;
//# sourceMappingURL=deploy-rollout-v3.d.ts.map