add new changes

This commit is contained in:
AD2025
2025-11-20 00:39:00 +02:00
parent 37b4d565b1
commit b2c564225e
12 changed files with 2734 additions and 34 deletions

View File

@@ -11,6 +11,14 @@ export interface Question {
difficulty: Difficulty;
categoryId: string;
categoryName?: string;
category?: {
id: string;
name: string;
slug?: string;
icon?: string;
color?: string;
guestAccessible?: boolean;
};
options?: string[]; // For multiple choice
correctAnswer: string | string[];
explanation: string;