confinode
Version:
Node application configuration reader
14 lines • 410 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* The level of the message.
*/
var Level;
(function (Level) {
Level[Level["Error"] = 0] = "Error";
Level[Level["Warning"] = 1] = "Warning";
Level[Level["Information"] = 2] = "Information";
Level[Level["Trace"] = 3] = "Trace";
})(Level || (Level = {}));
exports.default = Level;
//# sourceMappingURL=Level.js.map