@lg-tools/crawler
Version:
Crawler for MongoDB documentation and other sites
11 lines • 388 B
TypeScript
export interface CrawlerOptions {
/** Verbose mode */
verbose?: boolean;
/** Max crawl depth (as a string) */
depth?: string;
/** Specific URL to crawl. If not provided, the crawler will scan all URLs defined in the config. */
url?: string;
/** Dry run mode - crawls without inserting into MongoDB */
dryRun?: boolean;
}
//# sourceMappingURL=types.d.ts.map