@memberjunction/actions-bizapps-social
Version:
Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer
29 lines • 990 B
TypeScript
import { LinkedInBaseAction } from '../linkedin-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
* Action to get follower statistics for LinkedIn profiles and organizations
*/
export declare class LinkedInGetFollowersAction extends LinkedInBaseAction {
/**
* Get follower statistics for personal profile or organization
*/
protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
/**
* Get organization follower statistics
*/
private getOrganizationFollowers;
/**
* Get personal profile follower statistics
* Note: LinkedIn provides limited follower data for personal profiles
*/
private getPersonalFollowers;
/**
* Define the parameters this action expects
*/
get Params(): ActionParam[];
/**
* Get action description
*/
get Description(): string;
}
//# sourceMappingURL=get-followers.action.d.ts.map