feat: add interactive MCQ and code-sort exercise widgets to tutorial lessons
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -579,6 +579,24 @@ export interface Tutorial {
|
||||
created_at?: Date
|
||||
}
|
||||
|
||||
export interface ExerciseMcqData {
|
||||
question: string
|
||||
options: string[]
|
||||
answer: number
|
||||
}
|
||||
|
||||
export interface ExerciseSortData {
|
||||
question: string
|
||||
lines: string[]
|
||||
}
|
||||
|
||||
export interface Exercise {
|
||||
id: number
|
||||
type: 'mcq' | 'sort'
|
||||
data: ExerciseMcqData | ExerciseSortData
|
||||
order: number
|
||||
}
|
||||
|
||||
export interface DurationData {
|
||||
unit: string
|
||||
index: number
|
||||
|
||||
Reference in New Issue
Block a user