| export interface QuestionType { | |
| id: string; | |
| name: string; | |
| icon: string; | |
| description: string; | |
| } | |
| export interface QuestionParameters { | |
| [key: string]: string | number | boolean | string[]; | |
| } | |
| export interface GeneratedQuestion { | |
| id: string; | |
| type: string; | |
| stem: string; | |
| content: { | |
| Question: string; | |
| Options: { | |
| A: string; | |
| B: string; | |
| C: string; | |
| D: string; | |
| }; | |
| Answer: 'A' | 'B' | 'C' | 'D'; | |
| }; | |
| points: number; | |
| createdAt: Date; | |
| } |