UNPKG

string-sdk

Version:

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

12 lines (11 loc) 391 B
import { ClientOpts } from './signals'; export declare class AgentSeoClient { private opts; constructor(opts: ClientOpts); /** Crawl a URL with Context OS crawler and return structured data */ crawlUrl(url: string): Promise<any>; /** Get SEO recommendations for the given URL */ getRecommendations(url: string): Promise<{ recommendations: string[]; }>; }