@denodnt/logger
Version:
deno logger available for deno and NPM
14 lines (13 loc) • 335 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Types = void 0;
/**
* Types of messages that can be logged.
*/
var Types;
(function (Types) {
Types["INFO"] = "info";
Types["WARN"] = "warn";
Types["ERROR"] = "error";
})(Types || (exports.Types = Types = {}));
exports.default = Types;
;