UNPKG

sonarqube-issues-exporter

Version:

Enterprise-level SonarQube issues exporter with TypeScript support for generating comprehensive HTML reports with dark theme

12 lines 672 B
import { AppConfig } from './types/config'; import type { ExporterResult } from './types/report'; import type { ProgressCallback, ExportOptions } from './types/core'; export { SonarQubeService } from './services'; export { HtmlExporter } from './exporters'; export { loadConfig, AppConfig } from './config'; export { initLogger, getLogger } from './utils'; export * from './types'; export type { ProgressCallback, ExportOptions }; export declare function exportSonarQubeIssues(config: AppConfig, options?: ExportOptions): Promise<ExporterResult>; export declare function validateSonarQubeConnection(config: AppConfig): Promise<boolean>; //# sourceMappingURL=index.d.ts.map