Variable testDocumentsConst
testDocuments: {
root: { content: string; embedder: string; title: string };
someDoc: {
content: string;
embedder: string;
subEmbedders: string[];
title: string;
};
someDoc2: {
content: string;
embedder: string;
subEmbedders: string[];
title: string;
};
someDoc3: {
content: string;
embedder: string;
subEmbedders: string[];
title: string;
};
} = ...
Type Declaration
root: { content: string; embedder: string; title: string }
someDoc: { content: string; embedder: string; subEmbedders: string[]; title: string }
someDoc2: { content: string; embedder: string; subEmbedders: string[]; title: string }
someDoc3: { content: string; embedder: string; subEmbedders: string[]; title: string }