| 14 | results: TriviaResult[]; |
| 15 | } |
| 16 | interface TriviaResult { |
| 17 | category: string; |
| 18 | type: string; |
| 19 | difficulty: string; |
| 20 | question: string; |
| 21 | correctAnswer: string; |
| 22 | incorrectAnswers: string[]; |
| 23 | } |
| 24 | |
| 25 | const types = [ |
| 26 | { name: "multiple choice", data: "multiple" }, |
nothing calls this directly
no outgoing calls
no test coverage detected