UNPKG

@a11ywatch/core

Version:
14 lines (13 loc) 410 B
export interface CrawlParams { url?: string; scan?: boolean; userId?: number; robots?: boolean; subdomains?: boolean; tld?: boolean; agent?: string; proxy?: string; sitemap?: boolean; delay?: number; } export declare const watcherCrawl: ({ url, userId, scan, robots, subdomains, tld, agent, proxy, sitemap, delay, }: CrawlParams, deciphered?: boolean) => Promise<void>;