UNPKG

@blue-impact-engine/blue-impact-engine-client

Version:
20 lines 601 B
/** * Project status enumeration */ export var ProjectStatus; (function (ProjectStatus) { ProjectStatus["PENDING"] = "pending"; ProjectStatus["ACTIVE"] = "active"; ProjectStatus["COMPLETED"] = "completed"; ProjectStatus["ARCHIVED"] = "archived"; ProjectStatus["CANCELLED"] = "cancelled"; })(ProjectStatus || (ProjectStatus = {})); export const ProjectStatusLabels = { "pending": "Pending", "active": "Active", "completed": "Completed", "archived": "Archived", "cancelled": "Cancelled" }; export default ProjectStatus; //# sourceMappingURL=ProjectStatus.js.map