@zcatalyst/zia
Version:
ZOHO CATALYST SDK for JavaScript zia for Node.js and Browser.
7 lines (6 loc) • 793 B
TypeScript
import { Handler } from '@zcatalyst/transport';
import { ICatalsytZiaKeywordExtraction, ICatalystZiaNERPrediction, ICatalystZiaSentimentAnalysis, ICatalystZiaTextAnalytics } from './utils/interfaces';
export declare function _getSentimentAnalysis(requester: Handler, listOfDocuments: Array<string>, keywords?: Array<string>): Promise<ICatalystZiaSentimentAnalysis>;
export declare function _getKeywordExtraction(requester: Handler, listOfDocuments: Array<string>): Promise<ICatalsytZiaKeywordExtraction>;
export declare function _getNERPrediction(requester: Handler, listOfDocuments: Array<string>): Promise<ICatalystZiaNERPrediction>;
export declare function _getTextAnalytics(requester: Handler, listOfDocuments: Array<string>, keywords?: Array<string>): Promise<ICatalystZiaTextAnalytics>;