analytica-frontend-lib
Version:
Repositório público dos componentes utilizados nas plataformas da Analytica Ensino
13 lines • 519 B
TypeScript
/**
* Question status enum for student activity correction
* Maps from ANSWER_STATUS to a simpler status for UI display
*/
export declare const QUESTION_STATUS: {
readonly CORRETA: "CORRETA";
readonly INCORRETA: "INCORRETA";
readonly EM_BRANCO: "EM_BRANCO";
/** Reserved for future use - pending teacher evaluation for essay questions */
readonly PENDENTE: "PENDENTE";
};
export type QuestionStatus = (typeof QUESTION_STATUS)[keyof typeof QUESTION_STATUS];
//# sourceMappingURL=constants.d.ts.map