sonarqube-issues-exporter
Version:
Enterprise-level SonarQube issues exporter with TypeScript support for generating comprehensive HTML reports with dark theme
32 lines • 1.07 kB
JavaScript
;
/**
* @fileoverview Exporter-related type definitions for the SonarQube Issues Exporter
*
* This module contains all TypeScript interfaces and types related to export functionality,
* including exporter options, configurations, and output formats.
*
* @author SonarQube Issues Exporter Team
* @version 2.0.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExportFormat = void 0;
/**
* Available export formats
*
* @enum ExportFormat
* @description Supported export formats
*/
var ExportFormat;
(function (ExportFormat) {
/** HTML format with interactive features */
ExportFormat["HTML"] = "html";
/** JSON format for programmatic consumption */
ExportFormat["JSON"] = "json";
/** CSV format for spreadsheet applications */
ExportFormat["CSV"] = "csv";
/** PDF format for reports */
ExportFormat["PDF"] = "pdf";
/** XML format for structured data */
ExportFormat["XML"] = "xml";
})(ExportFormat || (exports.ExportFormat = ExportFormat = {}));
//# sourceMappingURL=exporter.js.map