| 16 | } |
| 17 | |
| 18 | export interface LinkedInProfile { |
| 19 | username: string; |
| 20 | name: string | null; |
| 21 | headline: string | null; |
| 22 | location: string | null; |
| 23 | profile_url: string; |
| 24 | avatar_url: string | null; |
| 25 | summary: string | null; |
| 26 | experience: Array<{ |
| 27 | title: string; |
| 28 | company: string; |
| 29 | duration: string; |
| 30 | description?: string; |
| 31 | }>; |
| 32 | education: Array<{ |
| 33 | school: string; |
| 34 | degree: string; |
| 35 | field: string; |
| 36 | duration: string; |
| 37 | }>; |
| 38 | skills: string[]; |
| 39 | } |
| 40 | |
| 41 | export type LinkedInResponse = LinkedInProfile; |
| 42 |
nothing calls this directly
no outgoing calls
no test coverage detected