Skip to main content
export interface TextContentItem {
  type: "text";
  data: string;
}
Represents text content for AI extraction. Used when passing text data directly to extractStructuredData without a page source.