@a11ywatch/core
Version:
a11ywatch central API
11 lines (10 loc) • 324 B
TypeScript
import type { ServerWritableStream } from "@grpc/grpc-js";
declare type ScanParams = {
pages: string[];
user_id: number;
domain: string;
full: boolean;
};
export declare type ScanRpcCall = ServerWritableStream<ScanParams, {}>;
export declare const scanStream: (rpc: ScanRpcCall) => Promise<void>;
export {};