UNPKG

friday-sdk

Version:

Official JavaScript/TypeScript SDK for the Friday API

12 lines (11 loc) 353 B
import { APIClient } from "../client"; export interface AnalyzeCompanyResponse { name?: string; description?: string; industry?: string; size?: string; website?: string; linkedin?: string; [key: string]: any; } export declare const analyzeCompany: (client: APIClient, linkedinUrl: string) => Promise<AnalyzeCompanyResponse>;