@a11ywatch/core
Version:
a11ywatch central API
14 lines (13 loc) • 410 B
TypeScript
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>;