//#region src/documents/document.d.ts interface DocumentInput = Record> { pageContent: string; metadata?: Metadata; /** * An optional identifier for the document. * * Ideally this should be unique across the document collection and formatted * as a UUID, but this will not be enforced. */ id?: string; } interface DocumentInterface = Record> { pageContent: string; metadata: Metadata; /** * An optional identifier for the document. * * Ideally this should be unique across the document collection and formatted * as a UUID, but this will not be enforced. */ id?: string; } /** * Interface for interacting with a document. */ declare class Document = Record> implements DocumentInput, DocumentInterface { pageContent: string; metadata: Metadata; /** * An optional identifier for the document. * * Ideally this should be unique across the document collection and formatted * as a UUID, but this will not be enforced. */ id?: string; constructor(fields: DocumentInput); } //#endregion export { Document, DocumentInput, DocumentInterface }; //# sourceMappingURL=document.d.ts.map