aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/quiz.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/quiz.ts')
-rw-r--r--src/quiz.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/quiz.ts b/src/quiz.ts
new file mode 100644
index 0000000..43e9f49
--- /dev/null
+++ b/src/quiz.ts
@@ -0,0 +1,10 @@
+export type Quiz = {
+ label: string;
+ func: string;
+ message: string;
+};
+
+export type QuizGroup = {
+ label: string;
+ quizzes: Quiz[];
+};