| 7 | import request from './request' |
| 8 | |
| 9 | export interface InterviewQuestion { |
| 10 | question: string |
| 11 | type: string |
| 12 | difficulty: string |
| 13 | skill: string |
| 14 | answerPoints?: string |
| 15 | evaluationDimension: string |
| 16 | } |
| 17 | |
| 18 | export interface InterviewRecord { |
| 19 | id: number |
nothing calls this directly
no outgoing calls
no test coverage detected