| 3 | import type IO from "@actions/io" |
| 4 | |
| 5 | export interface QuizMetaInfo { |
| 6 | title: string |
| 7 | author: { |
| 8 | name: string |
| 9 | github: string |
| 10 | } |
| 11 | difficulty: string |
| 12 | tags: [] |
| 13 | } |
| 14 | |
| 15 | export interface Quiz { |
| 16 | no: number |
nothing calls this directly
no outgoing calls
no test coverage detected