friday-sdk
Version:
Official JavaScript/TypeScript SDK for the Friday API
13 lines (12 loc) • 374 B
TypeScript
import { APIClient } from "../client";
export interface LinkedInProfileResponse {
name?: string;
headline?: string;
about?: string;
location?: string;
experiences?: any[];
education?: any[];
skills?: string[];
[key: string]: any;
}
export declare const getProfile: (client: APIClient, profileUrl: string) => Promise<LinkedInProfileResponse>;