UNPKG

sanity-plugin-seo

Version:

Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.

7 lines (6 loc) 201 B
export interface ReadabilityResult { score: number; label: string; color: "green" | "orange" | "red"; } export declare function getReadabilityScore(text: string): ReadabilityResult | null;