sonarqube-scanner
Version:
SonarQube/SonarCloud Scanner for the JavaScript world
4 lines (3 loc) • 322 B
TypeScript
import { type ScanOptions, type ScannerProperties } from './types';
export declare function fetchScannerEngine(properties: ScannerProperties): Promise<string>;
export declare function runScannerEngine(javaBinPath: string, scannerEnginePath: string, scanOptions: ScanOptions, properties: ScannerProperties): Promise<void>;