renamed function

This commit is contained in:
2024-05-09 09:39:55 -07:00
parent c94224a6c9
commit 99e9f4e3e3
3 changed files with 5 additions and 3 deletions
+2 -2
View File
@@ -162,8 +162,8 @@ export default class linkedInAPIClass {
* @param numEmp Array of numbers representing company sizes
* @param start Pagination start
* @param castToClass Whether to cast the result to Company classes or return raw JSON
* @param excludeGeneric Whether to exclude generic results
* @returns Promise resolving to either an array of Company or raw JSON
* @param excludeGeneric Whether to exclude the "generic" class
* @returns Promise resolving to either an array of SocialActivityCounts or Group or Company or GenericEntity
*/
searchCompanies(keyword: string, numEmp?: number[], start?: number, castToClass?: boolean, excludeGeneric?: boolean): Promise<[SocialActivityCounts | Group | Company | GenericEntity]>;