UNPKG

@3bbas/quizme

Version:

quizme is tool that help to generate a cli quiz from json file.

14 lines (12 loc) 249 B
export interface IQuizQ { id: number | string; question: string; options: Record<string, string>; answer: string; } export type IQuizResult = { correct: number; total: number; incorrect: IQuizQ[]; timeTaken: number; };