| 5 | } |
| 6 | |
| 7 | export interface Question { |
| 8 | id: number; |
| 9 | title: string; |
| 10 | slug: string; |
| 11 | pattern: string[]; |
| 12 | difficulty: "Easy" | "Medium" | "Hard"; |
| 13 | premium: boolean; |
| 14 | companies: Company[]; |
| 15 | } |
| 16 | |
| 17 | export interface QuestionsData { |
| 18 | updated: string; |
nothing calls this directly
no outgoing calls
no test coverage detected