@memberjunction/actions-bizapps-social
Version:
Social Media Actions for MemberJunction - Twitter, LinkedIn, Facebook, Instagram, TikTok, YouTube, HootSuite, Buffer
44 lines • 1.17 kB
TypeScript
import { TikTokBaseAction } from '../tiktok-base.action';
import { ActionParam, ActionResultSimple, RunActionParams } from '@memberjunction/actions-base';
/**
* Action to get comments from TikTok videos
*/
export declare class GetCommentsAction extends TikTokBaseAction {
/**
* Get comments from TikTok videos
*/
protected InternalRunAction(params: RunActionParams): Promise<ActionResultSimple>;
/**
* Simple sentiment analysis
*/
private analyzeSentiment;
/**
* Check if comment contains a question
*/
private containsQuestion;
/**
* Calculate sentiment breakdown
*/
private calculateSentimentBreakdown;
/**
* Identify notable comments
*/
private identifyNotableComments;
/**
* Get top commenters
*/
private getTopCommenters;
/**
* Analyze time distribution of comments
*/
private analyzeTimeDistribution;
/**
* Define the parameters this action expects
*/
get Params(): ActionParam[];
/**
* Metadata about this action
*/
get Description(): string;
}
//# sourceMappingURL=get-comments.action.d.ts.map