@a11ywatch/core
Version:
a11ywatch central API
14 lines (13 loc) • 435 B
TypeScript
import { bindTaskQ } from "../queues/crawl/handle";
declare type CrawlSet = {
total: number;
current: number;
crawling: boolean;
shutdown: boolean;
duration: number;
event: ReturnType<typeof bindTaskQ>;
};
export declare const crawlingSet: Map<string, CrawlSet>;
export declare const getKey: (domain: any, pages: any, user_id: any) => string;
export declare const establishCrawlTracking: () => void;
export {};