UNPKG

string-sdk

Version:

JavaScript/TypeScript client for the String SmartLink platform (Context OS)

13 lines (12 loc) 379 B
import { ClientOpts } from './signals'; export declare class CampaignIqClient { private opts; constructor(opts: ClientOpts); /** Get IQ score for a campaign */ getCampaignScore(id: string): Promise<{ score: number; breakdown: Record<string, number>; }>; /** List top campaigns by IQ score */ listTop(limit?: number): Promise<any[]>; }