Interface DocumentExtract

DocumentExtract represents the result of document extraction.

interface DocumentExtract {
    contents: string;
    count: number;
    title: string;
}

Properties

Properties

contents: string

contents represents the parsed document contents.

count: number

count represents the word count for the document.

title: string

title represents the parsed document title.