UNPKG
@denodnt/logger
Version:
latest (1.1.6)
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
deno logger available for deno and NPM
github.com/deno-library/logger
deno-library/logger
@denodnt/logger
/
esm
/
types.js
11 lines
(10 loc)
•
222 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
/** * Types of messages that can be logged. */
export
var
Types
; (
function
(
Types
) {
Types
[
"INFO"
] =
"info"
;
Types
[
"WARN"
] =
"warn"
;
Types
[
"ERROR"
] =
"error"
; })(
Types
|| (
Types
= {}));
export
default
Types
;