sonarqube-scanner
Version:
SonarQube/SonarCloud Scanner for the JavaScript world
6 lines (5 loc) • 366 B
TypeScript
import { type SemVer } from 'semver';
import { type ScannerProperties } from './types';
export declare function fetchServerVersion(properties: ScannerProperties): Promise<SemVer>;
export declare function serverSupportsJREProvisioning(properties: ScannerProperties): Promise<boolean>;
export declare function fetchJRE(properties: ScannerProperties): Promise<string>;