@capgo/cli
Version:
A CLI to upload to capgo servers
8 lines (7 loc) • 419 B
TypeScript
import type { OutcomeOptions, PrescanCheck, PrescanOutcome, PrescanReport, ScanContext } from './types';
interface EngineOptions {
checkTimeoutMs?: number;
}
export declare function runPrescan(ctx: ScanContext, checks: PrescanCheck[], options?: EngineOptions): Promise<PrescanReport>;
export declare function decideOutcome(report: Pick<PrescanReport, 'counts'>, options: OutcomeOptions): PrescanOutcome;
export {};