@sonar/scan
Version:
SonarQube/SonarCloud Scanner for the JavaScript world
8 lines (7 loc) • 429 B
TypeScript
import { ScanOptions, ScannerProperties } from './types';
export declare function normalizePlatformName(): 'windows' | 'linux' | 'macosx';
export declare function downloadScannerCli(properties: ScannerProperties): Promise<string>;
/**
* @param binPath Absolute path to the scanner CLI executable
*/
export declare function runScannerCli(scanOptions: ScanOptions, properties: ScannerProperties, binPath: string): Promise<void>;