UNPKG

@osdeibi/bucky-seo-react

Version:

React component for managing meta tags, Open Graph, and dynamic JSON-LD

20 lines (19 loc) 652 B
import type { StructuredData } from "../DynamicHead.types"; /** * Props para speakable: permite webs o artículos con secciones TTS. * Basado en el ejemplo oficial :contentReference[oaicite:0]{index=0}. */ export interface SpeakableProps { /** El tipo de CreativeWork: "WebPage", "Article", etc. */ type?: string; /** Nombre o título del contenido */ name?: string; /** URL canónica */ url?: string; /** Secciones que Google Assistant leerá en voz */ speakable: { "@type": "SpeakableSpecification"; xPath: string[]; }; } export declare function speakable(opts: SpeakableProps): StructuredData;