| 7 | import request from './request' |
| 8 | |
| 9 | export interface Position { |
| 10 | id: number |
| 11 | title: string |
| 12 | company: string |
| 13 | salaryRange: string |
| 14 | experience: string |
| 15 | education: string |
| 16 | location: string |
| 17 | responsibilities: string |
| 18 | requirements: string |
| 19 | skills: string[] |
| 20 | createdAt: string |
| 21 | } |
| 22 | |
| 23 | export interface PositionListResponse { |
| 24 | content: Position[] |
nothing calls this directly
no outgoing calls
no test coverage detected