express TS backend
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 4 años
hace 4 años
hace 4 años
123456789101112131415161718192021
  1. export type Question = {
  2. type: 'INPUT' | 'MCQ',
  3. text: string,
  4. choices?: Array<string>,
  5. correctAnswer?: string,
  6. durationInSeconds: number,
  7. marks: number,
  8. }
  9. export type Quiz = {
  10. questions: Array<Question>,
  11. minScoreToPass: number,
  12. totalDuration?: number, // Military time 060 is 6 AM, 1300 is 1 PM
  13. }
  14. export type Assignment = {
  15. heading: string,
  16. description: string, //Rich text
  17. deadlineDate: string,
  18. minimumCriteria: string,
  19. }