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

Properties

callerOptions?: any
excludeDirs?: string[]
extractor?: ((text) => string)

Type declaration

    • (text): string
    • Parameters

      • text: string

      Returns string

maxDepth?: number
preventOutside?: boolean
timeout?: number

Generated using TypeDoc