| 123456789101112131415161718 |
- export interface CommitRecord {
- commitDate: string
- score: number
- id: number
- }
- export interface Question {
- id: number
- description: string
- options: Option[]
- type: 'choice' | 'trueOrFalse'
- multiple: boolean
- }
- interface Option {
- label: string | number
- description: string
- }
|