MCPcopy Create free account
hub / github.com/KartikLabhshetwar/foliox / LinkedInProfile

Interface LinkedInProfile

types/api.ts:18–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16}
17
18export 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
41export type LinkedInResponse = LinkedInProfile;
42

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected