@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
22 lines • 493 B
JavaScript
;
var IncidentStatus;
(function (IncidentStatus) {
/**
* Pendente
*/
IncidentStatus["PENDING"] = "PENDING";
/**
* Em Progresso
*/
IncidentStatus["IN_PROGRESS"] = "IN_PROGRESS";
/**
* Parado
*/
IncidentStatus["STOPPED"] = "STOPPED";
/**
* Finalizado
*/
IncidentStatus["DONE"] = "DONE";
})(IncidentStatus || (IncidentStatus = {}));
module.exports = IncidentStatus;
//# sourceMappingURL=IncidentStatus.js.map