UNPKG

sonarqube-scanner

Version:
8 lines (7 loc) 439 B
import { type ScanOptions, type 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>;