agsamantha/node_modules/@langchain/community/dist/document_loaders/fs/notion.d.ts
2024-10-02 15:15:21 -05:00

10 lines
416 B
TypeScript

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);
}