interface RecursiveUrlLoaderOptions {
    callerOptions?: any;
    excludeDirs?: string[];
    extractor?: ((text: string) => string);
    maxDepth?: number;
    preventOutside?: boolean;
    timeout?: number;
}

Properties

callerOptions?: any
excludeDirs?: string[]
extractor?: ((text: string) => string)
maxDepth?: number
preventOutside?: boolean
timeout?: number