| 4 | import type { RouterMiddleware } from '@oak/oak' |
| 5 | |
| 6 | interface JavaScriptQuestion { |
| 7 | id: number |
| 8 | question: string |
| 9 | code?: string |
| 10 | options: string[] |
| 11 | answer: string |
| 12 | explanation: string |
| 13 | } |
| 14 | |
| 15 | class ServiceAwesomeJs { |
| 16 | handle(): RouterMiddleware<'/awesome-js'> { |
nothing calls this directly
no outgoing calls
no test coverage detected