symfony-style-console
Version:
Use the style and utilities of the Symfony Console in Node.js
50 lines (49 loc) • 1.87 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.VERBOSITY_DEBUG = exports.VERBOSITY_VERY_VERBOSE = exports.VERBOSITY_VERBOSE = exports.VERBOSITY_NORMAL = exports.VERBOSITY_QUIET = exports.OUTPUT_PLAIN = exports.OUTPUT_RAW = exports.OUTPUT_NORMAL = exports.OutputOptions = void 0;
/**
* All available output options. May be combined as a bitmask.
*/
var OutputOptions;
(function (OutputOptions) {
OutputOptions[OutputOptions["VERBOSITY_QUIET"] = 16] = "VERBOSITY_QUIET";
OutputOptions[OutputOptions["VERBOSITY_NORMAL"] = 32] = "VERBOSITY_NORMAL";
OutputOptions[OutputOptions["VERBOSITY_VERBOSE"] = 64] = "VERBOSITY_VERBOSE";
OutputOptions[OutputOptions["VERBOSITY_VERY_VERBOSE"] = 128] = "VERBOSITY_VERY_VERBOSE";
OutputOptions[OutputOptions["VERBOSITY_DEBUG"] = 256] = "VERBOSITY_DEBUG";
OutputOptions[OutputOptions["OUTPUT_NORMAL"] = 1] = "OUTPUT_NORMAL";
OutputOptions[OutputOptions["OUTPUT_RAW"] = 2] = "OUTPUT_RAW";
OutputOptions[OutputOptions["OUTPUT_PLAIN"] = 4] = "OUTPUT_PLAIN";
})(OutputOptions = exports.OutputOptions || (exports.OutputOptions = {}));
/**
* Output with this option will be formatted.
*/
exports.OUTPUT_NORMAL = 1;
/**
* Output with this option will be passed as-is.
*/
exports.OUTPUT_RAW = 2;
/**
* Output with this option will have any formatting stripped away.
*/
exports.OUTPUT_PLAIN = 4;
/**
* Output with this verbosity won't write anyting at all.
*/
exports.VERBOSITY_QUIET = 16;
/**
* Output with this verbosity will write default content.
*/
exports.VERBOSITY_NORMAL = 32;
/**
* Output with this verbosity will be more detailed.
*/
exports.VERBOSITY_VERBOSE = 64;
/**
* Output with this verbosity will be super detailed.
*/
exports.VERBOSITY_VERY_VERBOSE = 128;
/**
* Output with this verbosity will reveal internals.
*/
exports.VERBOSITY_DEBUG = 256;