13 lines
485 B
JavaScript
13 lines
485 B
JavaScript
// src/enums/deployment-status.ts
|
|
var DeploymentStatus = /* @__PURE__ */ ((DeploymentStatus2) => {
|
|
DeploymentStatus2["Waiting"] = "waiting";
|
|
DeploymentStatus2["Processing"] = "processing";
|
|
DeploymentStatus2["Building"] = "building";
|
|
DeploymentStatus2["Ready"] = "ready";
|
|
DeploymentStatus2["Failed"] = "failed";
|
|
return DeploymentStatus2;
|
|
})(DeploymentStatus || {});
|
|
|
|
export { DeploymentStatus };
|
|
//# sourceMappingURL=out.js.map
|
|
//# sourceMappingURL=deployment-status.mjs.map
|