UNPKG
@3bbas/quizme
Version:
latest (1.0.4)
1.0.4
1.0.2
1.0.1
1.0.0
quizme is tool that help to generate a cli quiz from json file.
@3bbas/quizme
/
src
/
types.ts
14 lines
(12 loc)
•
249 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
; };