UNPKG

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

Version:
13 lines 630 B
/** * Project status enumeration */ export declare enum ProjectStatus { PENDING = "pending",// Work in progress in the backend, not yet visible in frontend (except for preview) ACTIVE = "active",// Active and published project, visible in the frontend COMPLETED = "completed",// Project that is past its end date. Could still be visible in the frontend ARCHIVED = "archived",// Project is archived and no longer visible in the frontend CANCELLED = "cancelled" } export declare const ProjectStatusLabels: Record<ProjectStatus, string>; export default ProjectStatus; //# sourceMappingURL=ProjectStatus.d.ts.map