@a11ywatch/core
Version:
a11ywatch central API
11 lines (10 loc) • 427 B
TypeScript
import { ResponseModel } from "../../models/response/types";
import type { ScanRpcParams } from "../../../proto/actions/calls";
interface ScanParams extends Partial<ScanRpcParams> {
userId?: number;
url: string;
noStore?: boolean;
pageInsights?: boolean;
}
export declare const scanWebsite: ({ userId, url, pageInsights, runners, mobile, standard, html, ua, }: ScanParams) => Promise<ResponseModel>;
export {};