UNPKG

@langchain/community

Version:
15 lines (14 loc) 538 B
import { DirectoryLoader } from "@langchain/classic/document_loaders/fs/directory"; //#region src/document_loaders/fs/notion.d.ts /** * A class that extends the DirectoryLoader class. It represents a * document loader that loads documents from a directory in the Notion * format. It uses the TextLoader for loading '.md' files and ignores * unknown file types. */ declare class NotionLoader extends DirectoryLoader { constructor(directoryPath: string); } //#endregion export { NotionLoader }; //# sourceMappingURL=notion.d.cts.map