aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/quiz.ts
blob: 43e9f49a06d87efa7a918df47bd7307829e8e375 (plain)
1
2
3
4
5
6
7
8
9
10
export type Quiz = {
	label: string;
	func: string;
	message: string;
};

export type QuizGroup = {
	label: string;
	quizzes: Quiz[];
};