interface HashedDocumentInterface {
    metadata: Metadata;
    pageContent: string;
    uid: string;
    contentHash?: string;
    hash_?: string;
    metadataHash?: string;
    calculateHashes(): void;
    toDocument(): DocumentInterface<Record<string, any>>;
}

Hierarchy (view full)

Properties

metadata: Metadata
pageContent: string
uid: string
contentHash?: string
hash_?: string
metadataHash?: string

Methods

Generated using TypeDoc