string-sdk
Version:
JavaScript/TypeScript client for the String SmartLink platform (Context OS)
19 lines (18 loc) • 466 B
TypeScript
import { ClientOpts } from './signals';
export declare class AeoClient {
private opts;
constructor(opts: ClientOpts);
/**
* Returns the AEO score (0-100) for a given URL.
*/
getScore(url: string): Promise<{
score: number;
recommendations: string[];
}>;
/**
* Generates SEO / AEO optimized HTML for provided content.
*/
optimizeContent(html: string): Promise<{
optimized_html: string;
}>;
}