symfony-style-console
Version:
Use the style and utilities of the Symfony Console in Node.js
27 lines (26 loc) • 2.28 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SymfonyStyle = 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.Table = exports.TableStyle = exports.TableCell = exports.ConsoleOutput = exports.BufferedOutput = exports.StreamOutput = void 0;
var OutputInterface_1 = require("./Output/OutputInterface");
Object.defineProperty(exports, "OUTPUT_NORMAL", { enumerable: true, get: function () { return OutputInterface_1.OUTPUT_NORMAL; } });
Object.defineProperty(exports, "OUTPUT_RAW", { enumerable: true, get: function () { return OutputInterface_1.OUTPUT_RAW; } });
Object.defineProperty(exports, "OUTPUT_PLAIN", { enumerable: true, get: function () { return OutputInterface_1.OUTPUT_PLAIN; } });
Object.defineProperty(exports, "VERBOSITY_QUIET", { enumerable: true, get: function () { return OutputInterface_1.VERBOSITY_QUIET; } });
Object.defineProperty(exports, "VERBOSITY_NORMAL", { enumerable: true, get: function () { return OutputInterface_1.VERBOSITY_NORMAL; } });
Object.defineProperty(exports, "VERBOSITY_VERBOSE", { enumerable: true, get: function () { return OutputInterface_1.VERBOSITY_VERBOSE; } });
Object.defineProperty(exports, "VERBOSITY_VERY_VERBOSE", { enumerable: true, get: function () { return OutputInterface_1.VERBOSITY_VERY_VERBOSE; } });
Object.defineProperty(exports, "VERBOSITY_DEBUG", { enumerable: true, get: function () { return OutputInterface_1.VERBOSITY_DEBUG; } });
var SymfonyStyle_1 = require("./Style/SymfonyStyle");
exports.SymfonyStyle = SymfonyStyle_1.default;
var StreamOutput_1 = require("./Output/StreamOutput");
exports.StreamOutput = StreamOutput_1.default;
var BufferedOutput_1 = require("./Output/BufferedOutput");
exports.BufferedOutput = BufferedOutput_1.default;
var ConsoleOutput_1 = require("./Output/ConsoleOutput");
exports.ConsoleOutput = ConsoleOutput_1.default;
var Table_1 = require("./Helper/Table");
exports.Table = Table_1.default;
var TableCell_1 = require("./Helper/TableCell");
exports.TableCell = TableCell_1.default;
var TableStyle_1 = require("./Helper/TableStyle");
exports.TableStyle = TableStyle_1.default;