| 16 | } |
| 17 | |
| 18 | export interface InterviewRecord { |
| 19 | id: number |
| 20 | positionId: number | null |
| 21 | positionTitle: string | null |
| 22 | userId: number |
| 23 | difficulty: string |
| 24 | questionType: string |
| 25 | questions: InterviewQuestion[] |
| 26 | createdAt: string |
| 27 | } |
| 28 | |
| 29 | export interface InterviewRecordListResponse { |
| 30 | content: InterviewRecord[] |
nothing calls this directly
no outgoing calls
no test coverage detected