UNPKG

sonarqube-issues-exporter

Version:

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

30 lines 990 B
"use strict"; /** * @fileoverview CLI-related type definitions for the SonarQube Issues Exporter * * This module contains all TypeScript interfaces and types related to the * command-line interface functionality, including command options and arguments. * * @author SonarQube Issues Exporter Team * @version 2.0.0 */ Object.defineProperty(exports, "__esModule", { value: true }); exports.CLICommands = void 0; /** * CLI command names enum * * @enum CLICommands * @description Available CLI commands */ var CLICommands; (function (CLICommands) { /** Export SonarQube issues to HTML report */ CLICommands["EXPORT"] = "export"; /** Validate SonarQube connection and configuration */ CLICommands["VALIDATE"] = "validate"; /** Setup configuration interactively */ CLICommands["SETUP"] = "setup"; /** Display help information */ CLICommands["HELP"] = "help"; })(CLICommands || (exports.CLICommands = CLICommands = {})); //# sourceMappingURL=cli.js.map