Skip to main content
Text content item for content-based extraction.
export interface TextContentItem {
  type: "text";
  data: string;
}

Properties

type
'text'
The type of the content item, which is always “text”.
data
string
The text data to extract from.