running first test

This commit is contained in:
2024-08-21 14:19:30 -06:00
parent c698e33853
commit 2748416e7b
14 changed files with 416 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
import { LocalQuizQuestionAnswer } from "./localQuizQuestionAnswer";
export interface LocalQuizQuestion {
text: string;
questionType: QuestionType;
points: number;
answers: LocalQuizQuestionAnswer[];
}
export enum QuestionType {
MultipleAnswers = "multiple_answers",
MultipleChoice = "multiple_choice",
Essay = "essay",
ShortAnswer = "short_answer",
Matching = "matching"
}