UNPKG

linkedin-private-api

Version:

![Build](https://github.com/eilonmore/linkedin-private-api/workflows/Build/badge.svg?branch=master)

17 lines (16 loc) 835 B
import { LinkedInCollectionResponse } from '../entities/linkedin-collection-response.entity'; import { LinkedInMiniCompany } from '../entities/linkedin-mini-company.entity'; import { LinkedInMiniProfile } from '../entities/linkedin-mini-profile.entity'; import { LinkedInSearchCluster } from '../entities/linkedin-search-cluster.entity'; import { LinkedInTextViewModel } from '../entities/linkedin-text-view-model.entity'; interface GetBlendedSearchMetadata { $type: string; keywords: string; numVisibleResults: number; origin: string; searchId: string; totalResultCount: number; totalResultDisplayText: LinkedInTextViewModel; } export declare type GetBlendedSearchResponse = LinkedInCollectionResponse<LinkedInSearchCluster, LinkedInMiniProfile | LinkedInMiniCompany, GetBlendedSearchMetadata>; export {};