UNPKG

@langchain/community

Version:
11 lines (10 loc) 416 B
import { DirectoryLoader } from "langchain/document_loaders/fs/directory"; /** * 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. */ export declare class NotionLoader extends DirectoryLoader { constructor(directoryPath: string); }